How to output the uncracked hash while saving it
#1
Information 
This question is rather very simple but i can't help myself so i would simply ask from my mentors.

For this example i am using https://www.md5hashgenerator.com/

Quote:Your Hash: 5f4dcc3b5aa765d61d8327deb882cf99
Your String: password

Your Hash: 482c811da5d5b4bc6d497ffa98491e38
Your String: password123

Now that i have 2 password in my list to crack i use this command 
hashcat64.exe -m 0 -a 0 -o cracked.txt C:\hash.txt C:\wordlist.txt --show

And lets assume that everything went well and it did cracked the first hash and the second one being not cracked. 
How do i export the one which is not cracked as well for example i wanted to output like this

5f4dcc3b5aa765d61d8327deb882cf99:password
[b]482c811da5d5b4bc6d497ffa98491e38[/b]
#2
if order is not important you can use --left to dump all uncracked hashes
#3
yes it's working fine while using --left but i want to dump both the cracked and uncracked hashes in one file which when used this command --left doesn't do the job. Is their any other way to accomplish this?
#4
Maybe is the --remove an option for you?
 - the hash.txt will be cleaned and only the non-cracked remain

If you want one file of it, simply merge it with the output file.
#5
ok i think merging is the only option left for me / to write a custom script which might do all this for me