Skip to content

Instantly share code, notes, and snippets.

@woodRock
Last active December 8, 2020 09:02
Show Gist options
  • Save woodRock/44e954657a91cc0848e9dea5b6a14bc9 to your computer and use it in GitHub Desktop.
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.
#! /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