up vote 19 down vote favorite
16
share [g+] share [fb]

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.

link|improve this question
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
2  
I'd love to see a version of this that would work on OS X Snow Leopard, and would ignore .git and .svn folders. – trevorturk Feb 12 '10 at 19:54
feedback

6 Answers

Here is an OS X 10.6 Snow Leopard solution for trevorturk.

It Ignores .git and .svn folders and their contents. Also it won't leave a backup file.

find . -not \( -name .svn -prune -o -name .git -prune \) -type f -print0 | xargs -0 sed -i '' -E "s/[[:space:]]*$//"

link|improve this answer
This worked perfectly for me on OS X. I'd tried about a dozen solutions before I found this one- Thanks! – Eliza Mar 19 '11 at 20:14
2  
How can I exclude binary files, such as .jpg, .jar, .png, etc, without having to list each file type specifically? – jeffamaphone Oct 23 '11 at 22:23
feedback

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|improve this answer
Any chance you could clarify this? I'd like a command that will remove trailing whitespace from all files in a directory recursively, while ignoring the ".git" directory. I can't quite follow your example... – trevorturk Feb 12 '10 at 0:39
If you're using tcsh you'll need to change the double quotes to single quotes. Otherwise, you'll get an "Illegal variable name." error. – Brandon Fosdick May 29 '11 at 1:02
GNU sed is similar but you do -i.bak or --in-place=.bak, ending up with a full command of find dir -not -path '.git' -iname '*.py' -print0 | xargs -0 sed --in-place=.bak 's/[[:space:]]*$//'. Replace dir with the directory in question as the top-level to recurse from. – David Gardner Jun 21 '11 at 12:55
feedback

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|improve this answer
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
1  
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 2 more comments
feedback

Use:

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

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

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

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

perl -pi -e 's/ +$//' **/*
link|improve this answer
I had to prepend "-e" before the replacement statement (-e 's/...). – cweiske Nov 29 '11 at 12:00
You are right. I added the '-e' in the appropriate places. – Sec Dec 18 '11 at 1:01
feedback

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|improve this answer
feedback

I ended up running this, which is a mix between pojo and adams version.

It will clean both trailing whitespace, and also another form of trailing whitespace, the carriage return:

find . -not \( -name .svn -prune -o -name .git -prune \) -type f \
  -exec sed -i 's/ *$//' \{} \;  \
  -exec sed -i 's/\r\n$/\n/' \{} \;

It won't touch the .git folder if there is one.

Edit: Made it a bit safer after the comment, not allowing to take files with ".git" or ".svn" in it. But beware, it will touch binary files if you've got some. Use -iname "*.py" -or -iname "*.php" after -type f if you only want it to touch e.g. .py and .php-files.

link|improve this answer
2  
I don't know what's going on, but this totally fubared my git repo and messed with my images. PEOPLE, BE MORE CAREFUL THAN I WAS! – mattalexx Apr 26 '11 at 22:48
Yes, it will ruin binary files. However, it shouldn't touch your git repo at all, because it skips whatever resides inside a .git-folder. But maybe only if you're in the same folder. – Velmont May 25 '11 at 12:29
feedback

Your Answer

 
or
required, but never shown

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