This file contains 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
find . -name "*mp3" -exec mp3gain -r -k -d 5 {} \; |
This file contains 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 | |
CSCOPE_DIR="$PWD/cscope" | |
if [ ! -d "$CSCOPE_DIR" ]; then | |
mkdir "$CSCOPE_DIR" | |
fi | |
echo "finding files..." | |
gcc -M `pkg-config --cflags --libs lilv-0` `pkg-config --cflags --libs suil-0` \ |