02-22-2016, 05:59 AM
(02-14-2016, 03:56 PM)Xanadrel Wrote: Do you even know how to use your own system ?
You are passing 4 names to mkfifo with your command, you're not calling combinator.bin at all and you're trying to pipe into hashcat which is not possible.
I didn't put the commands on individual lines to make it pretty, you either run combinator.bin & hashcat in individual terminals, or you run it detached.
Code:$ head left right
==> left <==
left1
left2
left3
==> right <==
right1
right2
right3
So for example :
Code:$ mkfifo blah && ./combinator.bin left right > blah &
$ cat blah
left1right1
left1right2
left1right3
left2right1
left2right2
left2right3
left3right1
left3right2
left3right3
[2]- Done mkfifo blah && ./combinator.bin left right > blah
Thanks, I managed with this.