CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

| Download
Project: test
Views: 91871
1
#! /bin/bash
2
3
echo "merging book..."
4
5
6
echo "creating html..."
7
ipython nbconvert --to=html table_of_contents.ipynb
8
ipython nbconvert --to=html Preface.ipynb
9
ipython nbconvert --to=html 01_gh_filter/g-h_filter.ipynb
10
11
12
echo "done."
13
14
15