Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@nosada
Created July 7, 2014 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nosada/616feb2265d110f04a06 to your computer and use it in GitHub Desktop.
Save nosada/616feb2265d110f04a06 to your computer and use it in GitHub Desktop.
be happy
#!/bin/sh
directory="./*"
for filepath in ${directory}
do
if [ ! -f ${filepath} ]; then
echo "${filepath}"
cd ${filepath}
convert *.png anime.gif
cd ..
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment