Created
September 19, 2020 08:19
-
-
Save rainb3rry/4a4d6de7c77817d3dce49339d0c7d988 to your computer and use it in GitHub Desktop.
Amass output purifier for just domains
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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