-
Notifications
You must be signed in to change notification settings - Fork 6
/
policy.sh
executable file
·15 lines (13 loc) · 1.03 KB
/
policy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
workpath="/opt/evilmog/tmp"
packpath="/opt/utils/pack"
pps="160000000000"
rt="360"
python $packpath/statsgen.py --maxlength=24 -o $workpath/cand.lst.mask --hiderare $workpath/cand.lst
python $packpath/statsgen.py --maxlength=24 -o $workpath/cand.exp.mask --hiderare $workpath/cand.exp
python $packpath/statsgen.py --maxlength=24 -o $workpath/cand.cutb.mask --hiderare $workpath/cand.cutb
python $packpath/statsgen.py --maxlength=24 -o $workpath/cand.cutb.exp.mask --hiderare $workpath/cand.cutb.exp
python $packpath/maskgen.py --pps=$pps --minlength=8 --minoccurrence=10 -t $rt -o $workpath/cand.lst.hcmask $workpath/cand.lst.mask
python $packpath/maskgen.py --pps=$pps --minlength=8 --minoccurrence=10 -t $rt -o $workpath/cand.exp.hcmask $workpath/cand.exp.mask
python $packpath/maskgen.py --pps=$pps --minlength=8 --minoccurrence=10 -t $rt -o $workpath/cand.cutb.hcmask $workpath/cand.cutb.mask
python $packpath/maskgen.py --pps=$pps --minlength=8 --minoccurrence=10 -t $rt -o $workpath/cand.cutb.exp.hcmask $workpath/cand.cutb.exp.mask