4 lines
203 B
Bash
4 lines
203 B
Bash
|
#/usr/bin/env bash
|
||
|
BASEDIR=$(dirname "$0")
|
||
|
cat "$BASEDIR/README.md" | cut -d'(' -f2 | cut -d')' -f1 | egrep "^http*" | awk -F/ '{print $3}' | sed -E -e 's_.*\.([^\.]+)$_\1_g' | sort | uniq -c | sort -n
|