Last active
September 14, 2018 06:09
-
-
Save ramchandev/07b5566e33e6afe563e76091815cec2b to your computer and use it in GitHub Desktop.
Revisions
-
ramchandev revised this gist
Sep 14, 2018 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ for file in *.mp3; do mv "$file" "${file// /-}" #replace space with - done -
ramchandev created this gist
Sep 14, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ for file in *.mp3; do mv "$file" "${file// /-}" //Replace space with - done