Skip to content

Instantly share code, notes, and snippets.

@gireeshkbogu
Created April 8, 2020 19:32
Show Gist options
  • Save gireeshkbogu/69b6268df21475d6c12cfd4394fa1ce2 to your computer and use it in GitHub Desktop.
Save gireeshkbogu/69b6268df21475d6c12cfd4394fa1ce2 to your computer and use it in GitHub Desktop.
Adds a prefix to multiple file names
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