sqlmap/extra/shutils/pyflakes.sh
Miroslav Stampar 46885d4c28 New pep8 script
2012-12-13 16:07:49 +01:00

8 lines
300 B
Bash
Executable File

#!/bin/bash
# Copyright (c) 2006-2012 sqlmap developers (http://www.sqlmap.org/)
# See the file 'doc/COPYING' for copying permission
# Runs pyflakes on all python files (prerequisite: apt-get install pyflakes)
find . -wholename "./thirdparty" -prune -o -type f -iname "*.py" -exec pyflakes '{}' \;