rwxrob-dot/scripts/lh

8 lines
115 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
while read -r line;do
2023-09-26 16:40:28 +00:00
[[ $line =~ ^##+\ [^\ ] ]] && echo "* ${line#*# }"
done < "$1"
exit 0