Skip to content

Instantly share code, notes, and snippets.

@maztch
Created March 14, 2016 18:55
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 maztch/dbec1bd2d0ec4307727e to your computer and use it in GitHub Desktop.
Save maztch/dbec1bd2d0ec4307727e to your computer and use it in GitHub Desktop.
Replace spaces for undescore in file names
$ 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