Skip to content

Instantly share code, notes, and snippets.

@pocari
Created December 15, 2015 12:28
Show Gist options
  • Save pocari/a7cb54c36baa78c40de7 to your computer and use it in GitHub Desktop.
Save pocari/a7cb54c36baa78c40de7 to your computer and use it in GitHub Desktop.
空白を含むファイル リネーム
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