sqlmap/extra/shutils/blanks.sh
2013-01-18 14:07:51 +00:00

8 lines
258 B
Bash
Executable File

#!/bin/bash
# Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
# See the file 'doc/COPYING' for copying permission
# Removes trailing spaces from blank lines inside project files
find . -type f -iname '*.py' -exec sed -i 's/^[ \t]*$//' {} \;