sqlmap/extra/shutils/pep8.sh

8 lines
280 B
Bash
Raw Normal View History

2012-12-13 19:07:49 +04:00
#!/bin/bash
2013-01-18 18:07:51 +04:00
# Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
2017-10-11 15:50:46 +03:00
# See the file 'LICENSE' for copying permission
2012-12-13 19:07:49 +04:00
# Runs pep8 on all python files (prerequisite: apt-get install pep8)
find . -wholename "./thirdparty" -prune -o -type f -iname "*.py" -exec pep8 '{}' \;