Created
December 15, 2015 12:28
-
-
Save pocari/a7cb54c36baa78c40de7 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
IFS=" | |
" | |
for i in $(find . -type f -print0 | xargs -0 -If echo \f); do | |
MV_TO=$(echo "$i" | sed 's/\.ok//') | |
CMD="mv \"$i\" \"$MV_TO\"" | |
sh -c "$CMD" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment