Skip to content

Instantly share code, notes, and snippets.

@aausch
Created February 11, 2017 23:49
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 aausch/91b1cdfe52c3d233a1e1276dbc0e6653 to your computer and use it in GitHub Desktop.
Save aausch/91b1cdfe52c3d233a1e1276dbc0e6653 to your computer and use it in GitHub Desktop.
osx effective bash snippets
# remove spaces from files
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