remove_trailing_whitespace.sh 132 B

123456
  1. #!/bin/sh
  2. # Deletes trailing whitespace in-place in the passed-in files.
  3. # Sample syntax:
  4. # $0 *.cpp
  5. perl -pi -e 's/\s+$/\n/' $*