Skip to content

Instantly share code, notes, and snippets.

View alex-tee's full-sized avatar
💭
https://www.zrythm.org

alex-tee

💭
https://www.zrythm.org
View GitHub Profile
@alex-tee
alex-tee / file0.txt
Created March 21, 2018 02:23
Run mp3gain on all mp3s in current dir ref: https://qiita.com/faiyadesu/items/e6d294d1c85500914c1a
find . -name "*mp3" -exec mp3gain -r -k -d 5 {} \;
@alex-tee
alex-tee / file0.txt
Created March 11, 2018 07:21
Create cscope & ctags tags recursively (C/C++) ref: https://qiita.com/faiyadesu/items/b916c1aaed731d2bcb53
#!/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` \