Compare commits

..

4 Commits

Author SHA1 Message Date
Bel LaPointe
24a71b7fb0 k 2024-01-09 14:23:10 -07:00
Bel LaPointe
d4d3e776fd depth 2 2024-01-09 14:13:13 -07:00
Bel LaPointe
6b070aa3c5 gitignore rendered but keep toc 2024-01-09 14:12:19 -07:00
Bel LaPointe
2b187e4ff7 try 2024-01-09 13:52:07 -07:00
3 changed files with 3573 additions and 6 deletions

3569
raw.md Normal file

File diff suppressed because it is too large Load Diff

BIN
raw.md.gz

Binary file not shown.

View File

@@ -3,20 +3,18 @@
main() (
set -ueo pipefail
if [ ! -f ./raw.md.gz ]; then
wget -q -O - https://raw.githubusercontent.com/ZachGoldberg/Startup-CTO-Handbook/main/StartupCTOHandbook.md \
| gzip \
> ./raw.md.gz
if [ ! -f ./raw.md ]; then
wget -q -O ./raw.md https://raw.githubusercontent.com/ZachGoldberg/Startup-CTO-Handbook/main/StartupCTOHandbook.md
fi
rm -f ./src/* || true
mkdir -p ./src
printf "# Summary\n\n" > ./src/SUMMARY.md
cat ./raw.md.gz \
| gzip -d \
cat ./raw.md \
| (
n=0
n_f() {