mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 15:57:44 +02:00
9 lines
229 B
Bash
Executable File
9 lines
229 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [[ $# -eq 5 ]]
|
|
then
|
|
python3 /app/tools/dirsearch/dirsearch.py -u $1 -w $2 --json-report=$3 -e $4 -t $5 -e $4
|
|
else
|
|
python3 /app/tools/dirsearch/dirsearch.py -u $1 -w $2 --json-report=$3 -e $4 -t $5 -r -R $6 -e $4
|
|
fi
|