vote up 3 vote down star
2

How can you remove all of the trailing whitespace of an entire project? Starting at a root directory, and removing the trailing whitespace from all files in all folders.

Also, I want to to be able to modify the file directly, and not just print everything to stdout.

flag
Oh, are you looking for a "portable" solution, or a more OS-specific? What OS are you using? – Joe Pineda Sep 29 '08 at 23:17

4 Answers

vote up 5 vote down

In Bash:

find dir -type f -exec sed -i 's/ *$//' '{}' ';'

(Edit: doesn't give errors for directories; also now only removes trailing whitespace (previously it was removing leading and trailing whitespace))

link|flag
This generates errors like this for every file found. sed: 1: "dir/file.txt": command a expects \ followed by text – iamjwc Sep 29 '08 at 15:10
Replacing ';' with \; should work. (Also quotes around {} are not strictly needed). – agnul Sep 29 '08 at 15:20
Still getting the same error. :-\ – iamjwc Sep 29 '08 at 15:39
To remove all whitespace not just spaces you should replace the space character with [:space:] in your sed regular expression. – WMR Sep 30 '08 at 13:17
Another side note: This only works with sed versions >= 4, smaller versions do not support in place editing. – WMR Sep 30 '08 at 13:18
show 1 more comment
vote up 3 vote down

Use:

find . -print0 |xargs -0 perl -pi.bak 's/ +$//'

if you don't want the ".bak" files generated:

find . -print0 |xargs -0 perl -pi 's/ +$//'

as a zsh user, you can omit the call to find, and instead use:

perl -pi 's/ +$//' **/*
link|flag
vote up 3 vote down

This worked for me in OSX 10.5 Leopard, which does not use GNU sed or xargs.

find dir -type f -print0 | xargs -0 sed -i .bak -E "s/[[:space:]]*$//"

Just be careful with this if you have files that need to be excluded (I did)!

You can use -prune to ignore certain directories or files. For Python files in a git repository, you could use something like:

find dir -not -path '.git' -iname '*.py'
link|flag
vote up 0 vote down

I ended up not using find and not creating backup files.

sed -i '' 's/[[:space:]]*$//g' **/*.*

Depending on the depth of the file tree, this (shorter version) may be sufficient for your needs.

NOTE this also takes binary files, for instance.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.