rwxrob-dot/scripts/hboostdates

8 lines
133 B
Plaintext
Raw Normal View History

2022-02-09 07:29:05 +00:00
#!/usr/bin/env bash
declare -i w=0
while IFS= read -r line; do
echo "## Week $w: $line"
echo
((w++))
done < <(boostdates "$@")