mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 18:31:04 +00:00
7 lines
131 B
Bash
7 lines
131 B
Bash
|
#!/bin/sh
|
||
|
# Deletes trailing whitespace in-place in the passed-in files.
|
||
|
# Sample syntax:
|
||
|
# $0 *.cpp
|
||
|
|
||
|
perl -pi -e "s/\s+\$//" $*
|