xref: /openbsd-src/gnu/llvm/llvm/utils/lint/remove_trailing_whitespace.sh (revision 1ad61ae0a79a724d2d3ec69e69c8e1d1ff6b53a0)
1#!/bin/sh
2# Deletes trailing whitespace in-place in the passed-in files.
3# Sample syntax:
4#   $0 *.cpp
5
6perl -pi -e 's/\s+$/\n/' $*
7