4 lines
125 B
Bash
Executable File
4 lines
125 B
Bash
Executable File
#!/bin/sh
|
|
find . \( -iname "*.h" -o -iname "*.c" \) -exec sed -i .bak "s/[ ]*$//" {} \;
|
|
find . -iname "*.bak" -exec rm {} \;
|