Sequencing Rules
#11
Ok. Well the example I provided was a "for" loop, to let your shell loop over each rule file in the directory. So what you probably wanted to do was something like:

Code:
for r in ~/Downloads/cudaHashcat-2.01/rules/good_rules/*
do
    ./cudaHashcat64.bin --session stratfor /media/f14/Transcend/Stratfor/stratfor.hash wordlist -r $r
done
#12
(12-19-2015, 05:34 AM)epixoip Wrote: Ok. Well the example I provided was a "for" loop, to let your shell loop over each rule file in the directory. So what you probably wanted to do was something like:

Code:
for r in ~/Downloads/cudaHashcat-2.01/rules/good_rules/*
do
   ./cudaHashcat64.bin --session stratfor /media/f14/Transcend/Stratfor/stratfor.hash wordlist -r $r
done

Thank you. That is clearer. I appreciate the time.