mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-28 06:27:16 +00:00
a0007f190a
types of files (TableGen, LLVM assembly, HTML files, etc.) llvm-svn: 61592
7 lines
131 B
Bash
Executable File
7 lines
131 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+\$//" $*
|