[CMake] add_llvm_symbol_exports: Use ${native_export_file} instead of equivalent...
[oota-llvm.git] / utils / lint / remove_trailing_whitespace.sh
1 #!/bin/sh
2 # Deletes trailing whitespace in-place in the passed-in files.
3 # Sample syntax:
4 #   $0 *.cpp
5
6 perl -pi -e 's/\s+$/\n/' $*