sqlmap/extra/shutils/pyflakes.sh

8 lines
318 B
Bash
Raw Normal View History

#!/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 pyflakes on all python files (prerequisite: apt-get install pyflakes)
2019-04-19 12:24:34 +03:00
find . -wholename "./thirdparty" -prune -o -type f -iname "*.py" -exec pyflakes '{}' \; | grep -v "redefines '_'"