06-16-2017, 09:44 PM
Simple test:
will result:
Code:
!/bin/bash
echo "abc1" > testing.txt
echo "abc2" >> testing.txt
echo "abc3" >> testing.txt
cat testing.txt
echo "cat complete" # this WILL pass
hashcat -V
hashcat --stdout testing.txt
echo "hashcat complete" #it will NOT go there
will result:
Code:
# ./testing.sh
abc1
abc2
abc3
cat complete
v3.5.0
abc1
abc2
abc3