9 lines
140 B
Bash
9 lines
140 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
find ../src/ \
|
||
|
../test/ \
|
||
|
-regextype posix-egrep \
|
||
|
-regex ".*\.(cpp|h)$" \
|
||
|
-exec sed -i 's/ *$//' "{}" \;
|
||
|
|