Compare commits

..

5 Commits

Author SHA1 Message Date
Bel LaPointe
97f999a137 to compressed raw.md 2024-01-09 15:15:03 -07:00
Bel LaPointe
9377b2c427 k 2024-01-09 14:23:10 -07:00
Bel LaPointe
2f182393d5 depth 2 2024-01-09 14:13:13 -07:00
Bel LaPointe
05900e635e gitignore rendered but keep toc 2024-01-09 14:12:19 -07:00
Bel LaPointe
ef93baf97c try 2024-01-09 13:52:07 -07:00
3 changed files with 6 additions and 3573 deletions

3569
raw.md

File diff suppressed because it is too large Load Diff

BIN
raw.md.gz Normal file

Binary file not shown.

View File

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