05-02-2012, 04:45 PM
05-02-2012, 05:30 PM
I don't see anything special in cutb tool:
Anything else? xD
Code:
cat wordlist
apple1234
theman
fastcars
cut -c 1-4 wordlist
appl
them
fast
cut -c 1-4 --complement wordlist
e1234
an
cars
grep -Eo "....$" wordlist
1234
eman
cars
grep -Eo ".....$" wordlist | cut -c 1-3
e12
hem
tca
Anything else? xD
05-02-2012, 05:53 PM
i see only two reasons:
1. it works on windows without any additional dll
2. its much faster than grep:
1. it works on windows without any additional dll
2. its much faster than grep:
Quote:# time ../maskprocessor-0.66/mp64.bin -1 ?l?u ?1?1?1?1 | grep -Eo "....$" > /dev/null
real 0m6.828s
user 0m6.900s
sys 0m0.050s
Quote:# time ../maskprocessor-0.66/mp64.bin -1 ?l?u ?1?1?1?1 | ./cutb.bin -4 > /dev/null
real 0m1.100s
user 0m1.190s
sys 0m0.140s
05-02-2012, 05:59 PM
Okay. Cool : )
But you didn't answer the gentleman's question. LOL
But you didn't answer the gentleman's question. LOL
05-03-2012, 10:08 AM
yeah, i dont know when its getting released.