1#!/bin/bash 2 3# Copyright (c) 2006-2025 sqlmap developers (https://sqlmap.org) 4# See the file 'LICENSE' for copying permission 5 6# Runs pyflakes on all python files (prerequisite: apt-get install pyflakes) 7find . -wholename "./thirdparty" -prune -o -type f -iname "*.py" -exec pyflakes3 '{}' \; | grep -v "redefines '_'" 8 9