how to extract username:plain
#1
I have a file both with username:hash and username:plain combinations. is there a way to extract username:plain?
Reply
#2
grep -v '^.*:[regex that matches hash]$' file
Reply