2 lines
114 B
Bash
2 lines
114 B
Bash
|
cat README.md | cut -d'(' -f2 | cut -d')' -f1 | egrep "^http*" | awk -F/ '{print $3}' | sort | uniq -c | sort -n
|