In my previous article on audiobooks I showed a short script that converts *.mp3 audiobook files into much smaller *.ogg files. At the end of that article I mentioned that I have a very ugly process for handling whole zip archives of audiobooks. Today I show another terrible shell script! You guessed it, it fixes some of the problems of my first script. #!/bin/sh # Safer shell scripting. -x also helps debugging set -eufx INPUT_ZIP="${1}" TRACK_LIST=$(mktemp) # Find out what's in the zip file ...