sqlmap/extra/shutils/blanks.sh

8 lines
268 B
Bash
Raw Normal View History

#!/bin/bash
2012-06-28 01:32:16 +04:00
# 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]*$//' {} \;