Skip to content

Instantly share code, notes, and snippets.

@divyanshu013
Created March 20, 2018 13:37
Show Gist options
  • Save divyanshu013/6945438d653812f898b81cdc9e92db05 to your computer and use it in GitHub Desktop.
Save divyanshu013/6945438d653812f898b81cdc9e92db05 to your computer and use it in GitHub Desktop.
Convert the first frame of gifs in a directory to png images
for f in *.gif; do
convert $f'[0]' $f'.png'
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment