Default output from httprobe looks like; In certain conditions as ➖
cat results.txt | httprobe -c 100 -s -p https:443 > test.txt
Now what if we want only abc.com?
See below:
1. To cut the last 4 characters from a subdomain Input.txt
example: https://abc.com:443 to https://abc.com
cat test.txt | rev | cut -c 5- | rev > last.txt