1#!/bin/bash 2 3# Copyright (c) 2006-2025 sqlmap developers (https://sqlmap.org) 4# See the file 'LICENSE' for copying permission 5 6find . -type d -name "__pycache__" -exec rm -rf {} \; &>/dev/null 7find . -name "*.pyc" -exec rm -f {} \; &>/dev/null 8 9