Skip to content

Instantly share code, notes, and snippets.

@areichman
Created December 24, 2013 15:35
Show Gist options
  • Save areichman/8114821 to your computer and use it in GitHub Desktop.
Save areichman/8114821 to your computer and use it in GitHub Desktop.
Remove underscores from filenames
for name in *\ *; do mv -v "$name" "${name// /}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment