Last active
August 9, 2017 19:47
-
-
Save LorincJuraj/9ef273412c6abe5df4e0fa8d9eacbcbf to your computer and use it in GitHub Desktop.
Open all JPG, JPEG and PNG files in current folder in GIMP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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