finalcut/scripts/remove_eol_spaces.sh

11 lines
188 B
Bash
Raw Permalink Normal View History

#!/bin/sh
2015-05-23 13:35:12 +02:00
find ../src/ \
../src/include/final/ \
../examples/ \
../test/ \
2015-05-23 13:35:12 +02:00
-regextype posix-egrep \
-regex ".*\\.(cpp|h)$" \
2015-05-23 13:35:12 +02:00
-exec sed -i 's/ *$//' "{}" \;