So I have several lines in a file that looks like this
useradmin:$NT$asdlfkjwaeroisglkwerlkj23424tlj:::
useradmin:c2q3r4lsdfk23rlsdfkj3rjsdflk2k23:::
I am wondering if there's a script for sed and Regex to return these lines? I have tried the following and they didn't work.....
sed -n '/^\w+:{3}$/p' fileA.txt
sed -n '/^\w:{3}$/p' fileA.txt
Thank you so much for helping out!