opencube
Junior Member
- Apr 16, 2020
- 119
- 40
Since a lot of noob webmasters use services like hypestat to check on their "site value", here's a simple script that might help you drive some visitors to your own site :
while :; do curl "https://hypestat.com/" | grep -a13 "Analyzed Sites" | sed 's%https://hypestat.com/info/%%g' | awk -F[\"] 'NR>16{print $2;}' | sed 's/"//g' | while read in; do sleep 3; curl -e "https://hypestat.com/" "https://hypestat.com/compare/YOURSITE/$in"; done; done
You can use either your own computer (with Linux installed) or any VPS / hosted server that allows bash access.
What the script does is, it scrapes the site for newly checked websites, and then compares yours to theirs -- the idea being that the webmaster sees his site compared to yours and goes to check your site out.
while :; do curl "https://hypestat.com/" | grep -a13 "Analyzed Sites" | sed 's%https://hypestat.com/info/%%g' | awk -F[\"] 'NR>16{print $2;}' | sed 's/"//g' | while read in; do sleep 3; curl -e "https://hypestat.com/" "https://hypestat.com/compare/YOURSITE/$in"; done; done
You can use either your own computer (with Linux installed) or any VPS / hosted server that allows bash access.
What the script does is, it scrapes the site for newly checked websites, and then compares yours to theirs -- the idea being that the webmaster sees his site compared to yours and goes to check your site out.