Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sqlmapproject
GitHub Repository: sqlmapproject/sqlmap
Path: blob/master/extra/shutils/drei.sh
3553 views
1
#!/bin/bash
2
3
# Copyright (c) 2006-2026 sqlmap developers (https://sqlmap.org)
4
# See the file 'LICENSE' for copying permission
5
6
# Stress test against Python3(.14)
7
8
for i in $(find . -iname "*.py" | grep -v __init__); do PYTHONWARNINGS=all python3.14 -m compileall $i | sed 's/Compiling/Checking/g'; done
9
source `dirname "$0"`"/junk.sh"
10
11