Skip to content

Instantly share code, notes, and snippets.

@airbr
Created March 12, 2018 18:20
Show Gist options
  • Save airbr/a176b2198c52335be2ee4c7a8f0934f8 to your computer and use it in GitHub Desktop.
Save airbr/a176b2198c52335be2ee4c7a8f0934f8 to your computer and use it in GitHub Desktop.
Remove spaces from files in a given directory
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