Skip to content

Instantly share code, notes, and snippets.

@cazepeda-zz
Created July 14, 2014 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cazepeda-zz/50038b5ff06c5a8d01a6 to your computer and use it in GitHub Desktop.
Save cazepeda-zz/50038b5ff06c5a8d01a6 to your computer and use it in GitHub Desktop.
Renaming spaces to hypens on the command-line
for f in * ; do mv "$f" $( echo $f | tr ' ' '-' ) ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment