You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 3, 2018. It is now read-only.
echo" --quiet -q Activate quiet mode (${red}${bold}Must be before ${white}-d${normal}${red}${bold}or ${white}-f${normal})"
1260
1266
echo" --percentage -p Show the percentage of the results (${red}${bold}Must be before ${white}-d${normal}${red}${bold}or ${white}-f${normal})"
1261
1267
echo" --noFiles -n Deactivate the production of output files (${red}${bold}Must be before ${white}-d${normal}${red}${bold}or ${white}-f${normal})"
1268
+
echo" --noUnified -nu Deactivate the production of result.txt as unified result under the outpur directory (${red}${bold}Must be before ${white}-d${normal}${red}${bold}or ${white}-f${normal})"
1262
1269
echo" --split Split output files (${red}${bold}Must be before ${white}-d${normal}${red}${bold}or ${white}-f${normal})"
1263
1270
echo""
1264
1271
echo"Examples:"
@@ -1301,79 +1308,101 @@ else
1301
1308
outputLess=false
1302
1309
shift 1
1303
1310
;;
1311
+
1304
1312
# We catch domain
1305
1313
-d)
1306
1314
main "${2}"''
1307
1315
shift 2
1308
1316
;;
1317
+
1309
1318
# We catch if we show the execution time
1310
1319
-ex|--execution)
1311
1320
showExecutionTime=true
1312
1321
quiet=false
1313
1322
shift 1
1314
1323
;;
1324
+
1315
1325
# We catch file path
1316
1326
-f)
1317
1327
main ''"${2}"
1318
1328
shift 2
1319
1329
;;
1330
+
1320
1331
# we catch if the user want to activate the creation of hosts file
1321
1332
-h|--host)
1322
1333
generateHosts=true
1323
1334
checkHostsFiles
1324
1335
shift 1
1325
1336
;;
1337
+
1326
1338
--help)
1327
1339
usage
1328
1340
shift 1
1329
1341
;;
1342
+
1330
1343
# We change the IP to print into the hosts file
1331
1344
-ip)
1332
1345
customIP="${2}"
1333
1346
shift 2
1334
1347
;;
1348
+
1335
1349
# We catch if we can produce file or not
1336
1350
-n|--noFiles)
1337
1351
noFiles=true
1338
1352
quiet=false
1339
1353
shift 1
1340
1354
;;
1355
+
1341
1356
# We catch if have to show or hide the percentages
1342
1357
-p|--percentage)
1343
1358
showPercentage=true
1344
1359
shift 1
1345
1360
;;
1361
+
1346
1362
# Activation of quiet system
1347
1363
-q|--quiet)
1348
1364
quiet=true
1349
1365
noFiles=false
1350
1366
shift 1
1351
1367
;;
1352
1368
1369
+
# We catch if we need to active or deactivate the generation of
1370
+
# output/result.txt
1371
+
-nu|--noUnified)
1372
+
outputUnified=false
1373
+
shift 1
1374
+
;;
1375
+
1353
1376
# We split the result into different file
1354
1377
--split)
1355
1378
splitFiles=true
1356
1379
noFiles=false
1357
1380
shift 1
1358
1381
;;
1382
+
1359
1383
# catch the domain after --domain= for example: --domain=helloworld.com
1360
1384
# Will result only helloworld.com
1361
1385
--domain=*)
1362
1386
domainToCheck=${1#*=}
1363
1387
main "${domainToCheck}"''
1364
1388
shift 1
1365
1389
;;
1390
+
1366
1391
# catch the domain after --domain= for example: --file=lustUsedInDev/badreferers.list
1367
1392
# Will get the file lustUsedInDev/badreferers.list
0 commit comments