Last active
September 14, 2018 06:09
-
-
Save ramchandev/07b5566e33e6afe563e76091815cec2b to your computer and use it in GitHub Desktop.
Rename the files by finding the Pattern
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 file in *.mp3; do | |
| mv "$file" "${file// /-}" | |
| #replace space with - | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment