bolt/deps/llvm-18.1.8/llvm/utils/lint/remove_trailing_whitespace.sh
2025-02-14 19:21:04 +01:00

6 lines
132 B
Bash
Executable file

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