Technology and me

// How to remove trailing whitespace from a bunch of files

Linux files (and also Mac)

find . -name '*.js' -exec sed -i 's/[[:blank:]]*\n$/\n/g' '{}' \;

Windows files

find . -name '*.js' -exec sed -i 's/[[:blank:]]*\r$/\r/g' '{}' \;

Sed oneliners

Billets similaires

Comments are disabled

RSS Feed
Social ...
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Noncommercial-Share Alike 3.0 Unported