mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
653222fc99
types of files (TableGen, LLVM assembly, HTML files, etc.) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61592 91177308-0d34-0410-b5e6-96231b3b80d8
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+\$//" $*
|