Skip to content

Instantly share code, notes, and snippets.

@LorincJuraj
Last active August 9, 2017 19:47
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 LorincJuraj/9ef273412c6abe5df4e0fa8d9eacbcbf to your computer and use it in GitHub Desktop.
Save LorincJuraj/9ef273412c6abe5df4e0fa8d9eacbcbf to your computer and use it in GitHub Desktop.
Open all JPG, JPEG and PNG files in current folder in GIMP
#!/bin/bash
gimp & sleep 1; for i in `ls *.{jpg,jpeg,png} | sort -V -r`; do gimp $i; sleep 0.2; done
# save to '/home/YOUR-USERNAME/.local/share/nautilus/scripts' and make it executable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment