Skip to content

Instantly share code, notes, and snippets.

@yeliu84
Created November 27, 2009 06:15
Show Gist options
  • Save yeliu84/243853 to your computer and use it in GitHub Desktop.
Save yeliu84/243853 to your computer and use it in GitHub Desktop.
Remove whitespaces in filename
# via http://stackoverflow.com/questions/1806868/linux-replacing-spaces-in-the-file-names
rename "s/ /_/g" *
rename " " "_" *
for file in *; do mv "$file" `echo "$file" | tr ' ' '_'`; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment