Last active
December 8, 2020 09:02
-
-
Save woodRock/44e954657a91cc0848e9dea5b6a14bc9 to your computer and use it in GitHub Desktop.
Generate a list formatted in the markdown Syntax for my Advent of Code [repository](https://github.com/woodRock/verbose-computing-machine) README.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
CURRENT=8 | |
CHECKED=" " | |
for DAY in {1..31} | |
do | |
if [[ $DAY -le $CURRENT ]]; then | |
CHECKED="x" | |
else | |
CHECKED=" " | |
fi | |
echo "- [${CHECKED}] [Day ${DAY}](https://github.com/woodRock/verbose-computing-machine/tree/main/day-${DAY})" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment