qutebrowser/scripts/dev/strip_whitespace.sh

11 lines
232 B
Bash
Raw Normal View History

#!/bin/bash
# Strip trailing whitespace from files in this repo
find qutebrowser scripts tests \
-type f \( \
-name '*.py' -o \
-name '*.feature' -o \
-name '*.sh' \
\) -exec sed -i 's/ \+$//' {} +