Worldlist Clean up
#2
awk is your friend:

awk 'BEGIN { FS = ":" } ; { print $NF }' potfile
or
cat potfile | awk 'BEGIN { FS = ":" } ; { print $NF }'

should do this job depending on the delimiter (":", " ", ....)

for more read this:
https://www.tutorialspoint.com/awk/awk_b...amples.htm


Messages In This Thread
Worldlist Clean up - by Willyboy - 09-05-2017, 08:25 AM
RE: Worldlist Clean up - by ZerBea - 09-05-2017, 12:14 PM
RE: Worldlist Clean up - by undeath - 09-05-2017, 04:38 PM
RE: Worldlist Clean up - by Willyboy - 09-05-2017, 05:57 PM
RE: Worldlist Clean up - by Willyboy - 09-24-2017, 10:02 AM
RE: Worldlist Clean up - by philsmd - 09-24-2017, 11:10 AM