Skip to content

Instantly share code, notes, and snippets.

@seym45
Created August 7, 2020 06:15
Show Gist options
  • Save seym45/3008de4d6467f4255c0d902db3a2fab9 to your computer and use it in GitHub Desktop.
Save seym45/3008de4d6467f4255c0d902db3a2fab9 to your computer and use it in GitHub Desktop.
add prefix to all filenames of current directory where filenames are ended with .jpeg
# change prefix
prefix="someprefix_"
for filename in *.jpeg; do mv ${filename} ${prefix}${filename}; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment