Skip to content

Instantly share code, notes, and snippets.

@davidchase
Created March 4, 2013 19:40
Show Gist options
  • Save davidchase/5084872 to your computer and use it in GitHub Desktop.
Save davidchase/5084872 to your computer and use it in GitHub Desktop.
Shell Fu rename multiple files with a prefix or suffix
#Renaming multiple files with a set prefix
rename 's/^/slider_/' *
#Renaming multiple files with a set suffix
rename 's/$/_slider/' *
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment