sqlmap/extra/shutils/pyflakes.sh
2012-12-10 17:44:55 +01:00

8 lines
259 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
find . -wholename "./thirdparty" -prune -o -type f -iname "*.py" -exec pyflakes '{}' \;