mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
7 lines
220 B
Bash
7 lines
220 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
wget -O- https://ahrefs.com/blog/most-visited-websites/ | grep most-visited-websites-us | \
|
||
|
sed -E 's/class="column-2">/|/g' | tr '|' '\n' | \
|
||
|
sed 's/<.*//g' | grep -v Domain | grep -v Josh | sort | uniq
|
||
|
|