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

8 lines
288 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 pep8 on all python files (prerequisite: apt-get install pep8)
find . -wholename "./thirdparty" -prune -o -type f -iname "*.py" -exec pep8 '{}' \;