‰ cat ~/bin/soundcloud-tagify
#!/bin/sh
artist="$1"
shift 1
for f in "$@"; do
title="`basename "$f" | sed -e 's#\(.\)-[^\.]\.\([^\.]*\)#\1#'`"
echo mid3v2 -a "$artist" -t "$title"
read -n 1 -p 'OK? ' action
echo
case "$action" in
Y|y)
mid3v2 -a "$artist" -t "$title" "$f";;
*)
echo Then fuck you;;
esac
done
@Byzanite twitter.com : Listen to my new track with Suttle! Sick of It (ft. Suttle) on #SoundCloud t.co
nice one RT