Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c040323 commit 46885d4Copy full SHA for 46885d4
2 files changed
extra/shutils/pep8.sh
@@ -0,0 +1,7 @@
1
+#!/bin/bash
2
+
3
+# Copyright (c) 2006-2012 sqlmap developers (http://www.sqlmap.org/)
4
+# See the file 'doc/COPYING' for copying permission
5
6
+# Runs pep8 on all python files (prerequisite: apt-get install pep8)
7
+find . -wholename "./thirdparty" -prune -o -type f -iname "*.py" -exec pep8 '{}' \;
extra/shutils/pyflakes.sh
@@ -3,5 +3,5 @@
# Copyright (c) 2006-2012 sqlmap developers (http://www.sqlmap.org/)
# See the file 'doc/COPYING' for copying permission
-# Runs pyflakes on all python files
+# Runs pyflakes on all python files (prerequisite: apt-get install pyflakes)
find . -wholename "./thirdparty" -prune -o -type f -iname "*.py" -exec pyflakes '{}' \;
0 commit comments