#!/bin/bash # 2002.06.14 altblue ## id3maker mkmp3index mkcrc for file in * do if [ -d "$file" ] then pushd "$file" mkmp3index mkcrc popd fi done