4 lines
203 B
Bash
Executable File
4 lines
203 B
Bash
Executable File
#/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
|