How to save all generated hashes to file?
#4
ftfy

(08-17-2017, 09:22 AM)MrMeeseeks Wrote: Bash one liner for the win:
Code:
while read -r line; do echo -n "$line" | sha256sum | cut -d " " -f 1; done < ./plains > hashes


Messages In This Thread
RE: How to save all generated hashes to file? - by undeath - 08-17-2017, 10:41 AM