Created
January 2, 2018 05:47
-
-
Save sirmews/0793db29d0686bf2016aa8fcd036e0c1 to your computer and use it in GitHub Desktop.
Convert all spaces to underscore with bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for name in *; do mv "$name" "${name// /_}"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment