2 lines
84 B
Bash
2 lines
84 B
Bash
|
|
#!/bin/sh
|
||
|
|
find . \( -iname "*.h" -o -iname "*.c" \) -exec sed -i "s/[ \t]*$//" {} \;
|