Skip to content

Instantly share code, notes, and snippets.

@orbekk
Created December 4, 2011 17:23
Show Gist options
  • Save orbekk/1430745 to your computer and use it in GitHub Desktop.
Save orbekk/1430745 to your computer and use it in GitHub Desktop.
Rip.sh
#!/bin/bash
for i in {1..1000}; do
DIR=$(printf "Disc %02d\n" $i)
echo "Ripping: " $DIR
echo "Return to continue."
read
mkdir "$DIR" && EJECTCD=y OUTPUTDIR="${DIR}" abcde -N -n
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment