Created
February 11, 2014 03:41
-
-
Save vasmani/8928902 to your computer and use it in GitHub Desktop.
파일명 일괄 변경
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
| #!/bin/sh | |
| for i in `ls -- *.mp`do | |
| fbody=`basename -- $i .mp` | |
| mv -- ${fbody}.mp ${fbody}.mp3 | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment