Created
April 8, 2020 19:32
-
-
Save gireeshkbogu/69b6268df21475d6c12cfd4394fa1ce2 to your computer and use it in GitHub Desktop.
Adds a prefix to multiple file names
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
for filename in *.jpg; do mv "$filename" "prefix_$filename"; done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment