Jason Yan wrote: > My editor always try to remove the extra white space at the end of the > line when I make some changes. I'm tired of adjusting them manually. A real (trailing) clean up is done with: find -type f -exec sed -i 's/[[:cntrl:]]\+$//' {} + Trailing spaces, tabs and ^L were deleted from drivers/scsi. There is crap in the whole linux tree.