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