bookmarks/count_links.sh
2019-07-22 13:13:27 +02:00

4 lines
147 B
Bash
Executable File

#/usr/bin/env bash
BASEDIR=$(dirname "$0")
cat "$BASEDIR/README.md" | cut -d'(' -f2 | cut -d')' -f1 | egrep "^http*" | sort -u | wc -l | tr -d ' '