Skip to content

Instantly share code, notes, and snippets.

@barnabyalter
Created April 20, 2015 15:17
Show Gist options
  • Save barnabyalter/a54743472777d0dd6525 to your computer and use it in GitHub Desktop.
Save barnabyalter/a54743472777d0dd6525 to your computer and use it in GitHub Desktop.
Change the name of all files in a directory
for f in * ; do mv "$f" "PRE_$f" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment