Skip to content

Instantly share code, notes, and snippets.

@db0company
Created April 28, 2016 10:10
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 db0company/17ce065f5d0f2c9fd4096a2b1e6872bc to your computer and use it in GitHub Desktop.
Save db0company/17ce065f5d0f2c9fd4096a2b1e6872bc to your computer and use it in GitHub Desktop.
Replace spaces in all files in a folder with underscores
for f in *\ *; do mv "$f" "${f// /_}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment