Skip to content

Instantly share code, notes, and snippets.

@brunosan
Created June 12, 2012 15:14
Show Gist options
  • Select an option

  • Save brunosan/2918118 to your computer and use it in GitHub Desktop.

Select an option

Save brunosan/2918118 to your computer and use it in GitHub Desktop.
Quickly rename files in a folder to prepend a word
for i in *; do mv "$i" "legacy-$i" ;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment