Created
March 9, 2019 23:26
-
-
Save mark-hallman/4946e537d58f1f01761d72cbc990a88c to your computer and use it in GitHub Desktop.
remove blanks from filenames
This file contains hidden or 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 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