bookmarks/count_links.sh

4 lines
147 B
Bash
Raw Normal View History

2018-09-03 07:47:54 +00:00
#/usr/bin/env bash
BASEDIR=$(dirname "$0")
2019-07-22 11:13:27 +00:00
cat "$BASEDIR/README.md" | cut -d'(' -f2 | cut -d')' -f1 | egrep "^http*" | sort -u | wc -l | tr -d ' '