main
parent
2f182393d5
commit
9377b2c427
|
|
@ -32,12 +32,19 @@ main() (
|
||||||
1|2 )
|
1|2 )
|
||||||
n=$((n+1))
|
n=$((n+1))
|
||||||
printf "%s- [%s](%s)\n" \
|
printf "%s- [%s](%s)\n" \
|
||||||
"$(for i in $(seq 0 $depth); do printf " "; done)" \
|
"$(
|
||||||
|
i=0
|
||||||
|
while ((i<depth-1)); do
|
||||||
|
printf " "
|
||||||
|
i=$((i+1))
|
||||||
|
done
|
||||||
|
)" \
|
||||||
"${line#* }" \
|
"${line#* }" \
|
||||||
"$(n_f)" \
|
"$(n_f)" \
|
||||||
| tee -a ./src/SUMMARY.md >&2
|
| tee -a ./src/SUMMARY.md >&2
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
echo "$line" | tee -a "./src/$(n_f)" &> /dev/null
|
||||||
done
|
done
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
# Summary
|
# Summary
|
||||||
|
|
||||||
- [THE STARTUP CTO'S HANDBOOK](001.txt)
|
- [THE STARTUP CTO'S HANDBOOK](001.txt)
|
||||||
- [Essential Skills And Best Practices For High Performing Engineering Teams](002.txt)
|
- [Essential Skills And Best Practices For High Performing Engineering Teams](002.txt)
|
||||||
- [By Zach Goldberg](003.txt)
|
- [By Zach Goldberg](003.txt)
|
||||||
- [Dedications](004.txt)
|
- [Dedications](004.txt)
|
||||||
- [Praise](005.txt)
|
- [Praise](005.txt)
|
||||||
- [Contents](006.txt)
|
- [Contents](006.txt)
|
||||||
- [Introduction](007.txt)
|
- [Introduction](007.txt)
|
||||||
- [The Author](008.txt)
|
- [The Author](008.txt)
|
||||||
- [Using this Book](009.txt)
|
- [Using this Book](009.txt)
|
||||||
- [Business Processes](010.txt)
|
- [Business Processes](010.txt)
|
||||||
- [People & Culture](011.txt)
|
- [People & Culture](011.txt)
|
||||||
- [Management Fundamentals](012.txt)
|
- [Management Fundamentals](012.txt)
|
||||||
- [Hiring and Interviewing](013.txt)
|
- [Hiring and Interviewing](013.txt)
|
||||||
- [Onboarding](014.txt)
|
- [Onboarding](014.txt)
|
||||||
|
|
@ -18,13 +18,13 @@
|
||||||
- [Team Makeup](016.txt)
|
- [Team Makeup](016.txt)
|
||||||
- [Leadership Responsibilities](017.txt)
|
- [Leadership Responsibilities](017.txt)
|
||||||
- [Which Type of Startup CTO Are You?](018.txt)
|
- [Which Type of Startup CTO Are You?](018.txt)
|
||||||
- [Technical Team Management](019.txt)
|
- [Technical Team Management](019.txt)
|
||||||
- [Tech Culture and General Philosophy](020.txt)
|
- [Tech Culture and General Philosophy](020.txt)
|
||||||
- [Tech Debt](021.txt)
|
- [Tech Debt](021.txt)
|
||||||
- [Technology Roadmap](022.txt)
|
- [Technology Roadmap](022.txt)
|
||||||
- [Tech Process](023.txt)
|
- [Tech Process](023.txt)
|
||||||
- [Developer Experience (DX)](024.txt)
|
- [Developer Experience (DX)](024.txt)
|
||||||
- [Tech Architecture](025.txt)
|
- [Tech Architecture](025.txt)
|
||||||
- [Architecture](026.txt)
|
- [Architecture](026.txt)
|
||||||
- [Data And Analytics](027.txt)
|
- [Data And Analytics](027.txt)
|
||||||
- [Tools](028.txt)
|
- [Tools](028.txt)
|
||||||
|
|
@ -34,9 +34,9 @@
|
||||||
- [Production Escalations](032.txt)
|
- [Production Escalations](032.txt)
|
||||||
- [IT](033.txt)
|
- [IT](033.txt)
|
||||||
- [Security and Compliance](034.txt)
|
- [Security and Compliance](034.txt)
|
||||||
- [Conclusion: Measuring Success](035.txt)
|
- [Conclusion: Measuring Success](035.txt)
|
||||||
- [Book References](036.txt)
|
- [Book References](036.txt)
|
||||||
- [Digital References](037.txt)
|
- [Digital References](037.txt)
|
||||||
- [Glossary](038.txt)
|
- [Glossary](038.txt)
|
||||||
- [About the author](039.txt)
|
- [About the author](039.txt)
|
||||||
- [About the publisher](040.txt)
|
- [About the publisher](040.txt)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue