sqlmap/extra/shutils/blanks.sh
Miroslav Stampar d013644c65 Minor update
2012-12-10 17:37:43 +01:00

8 lines
262 B
Bash
Executable File

#!/bin/bash
# Copyright (c) 2006-2012 sqlmap developers (http://www.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]*$//' {} \;