This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Converts all .flac files in the folder where this script is executed | |
# to redbook (CDDA) .flac 44.1KHz, 16bit. | |
# It requires SoX, the Swiss Army knife of sound processing programs. | |
# Enable for loops over items with spaces in their name | |
IFS=$'\n' | |
if [ ! -d redbook/ ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |