sqlmap/extra/shutils/blanks.sh

8 lines
262 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
2012-12-10 20:37:43 +04:00
find . -type f -iname '*.py' -exec sed -i 's/^[ \t]*$//' {} \;