Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
i=1; while true; do fn=$(printf "%05d" $i); if [[ ! -e "img_$fn.jpeg" ]]; then echo "File not found: $fn"; fi ; i=$(expr $i + 1); done | less
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment