Difference between revisions of "Illegal characters"
Jump to navigation
Jump to search
m (added Category:Bash using HotCat) |
m (added Category:Bash using HotCat) |
(No difference)
|
Latest revision as of 23:11, 1 December 2015
You're cleaning up a Linux filesystem to make it compatible with Windows (which doesn't accept the kind of characters that Linux hangs around with).
find . -name "*[<>:\\|?*]*" -exec bash -c 'x="{}"; y=$(sed "s/[<>:\\|?*]\+/-/g" <<< "$x") && mv "$x" "$y" ' \;