mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
8 lines
133 B
Plaintext
8 lines
133 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
declare -i w=0
|
||
|
while IFS= read -r line; do
|
||
|
echo "## Week $w: $line"
|
||
|
echo
|
||
|
((w++))
|
||
|
done < <(boostdates "$@")
|