Skip to content

Instantly share code, notes, and snippets.

@rainb3rry
Created September 19, 2020 08:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rainb3rry/4a4d6de7c77817d3dce49339d0c7d988 to your computer and use it in GitHub Desktop.
Save rainb3rry/4a4d6de7c77817d3dce49339d0c7d988 to your computer and use it in GitHub Desktop.
Amass output purifier for just domains
while read p; do
echo $p | cut -c19-2000000 | cut -f1 -d" " >> purified.txt
done < output.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment