Skip to content

Instantly share code, notes, and snippets.

@scottmuc
Last active August 29, 2015 13:57
Show Gist options
  • Save scottmuc/9914870 to your computer and use it in GitHub Desktop.
Save scottmuc/9914870 to your computer and use it in GitHub Desktop.
#!/bin/bash
for i in {1..90}
do
num=`printf "%02d" $i`
if ! ls das-00${num}* &> /dev/null; then
echo missing episode ${num}
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment