Created
March 28, 2019 20:10
-
-
Save gdm/0578b78cb8435a25833403146ae6ba88 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # rename files with complex names | |
| j=1 | |
| for f in *.jpg ; do | |
| echo "mv '$f' p${j}.jpg" | |
| j=$((j+1)) | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment