bolt/deps/llvm-18.1.8/llvm/utils/lint/remove_trailing_whitespace.sh

7 lines
132 B
Bash
Raw Normal View History

2025-02-14 19:21:04 +01:00
#!/bin/sh
# Deletes trailing whitespace in-place in the passed-in files.
# Sample syntax:
# $0 *.cpp
perl -pi -e 's/\s+$/\n/' $*