Last active
January 4, 2021 10:31
-
-
Save CLCL/55f9e6cd71a14ad79e4dded44d03abf5 to your computer and use it in GitHub Desktop.
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
# カレントディレクトリのScreenShot hoge.png を hoge.pngにリネーム | |
# bashでリネーム 変数 $FILE は ${FILE}とも書ける | |
# ${FILE##ScreenShot }とすると文頭から最長マッチでその文字列を除去した文字列を値として持つ | |
for FILE in *; do mv "${FILE}" "${FILE##ScreenShot }"; done |
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
# カレントディレクトリのhoge_HD-1.mp4 を hoge_mp4にリネーム | |
# bashでリネーム 変数 $FILE は ${FILE}とも書ける | |
# ${FILE%HD-1.mp4 }とすると文末から最短マッチでその文字列を除去した文字列を値として持つ | |
for FILE in *; do mv "${FILE}" "${FILE%_HD-1.mp4}.mp4"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment