• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3wget -O- https://ahrefs.com/blog/most-visited-websites/ | grep most-visited-websites-us | \
4	sed -E 's/class="column-2">/|/g' | tr '|' '\n' | \
5	sed 's/<.*//g' | grep -v Domain | grep -v Josh | sort | uniq
6
7