Bash script with multiple papermill commands does not fail on notebook errors
问题 I have a refresh_data.sh file which contains multiple papermill commands, for example: papermill notebook_1.ipynb output_1.ipynb -p start "2017-12-01" -p date "2017-12-31" papermill notebook_2.ipynb output_2.ipynb -p start "2018-01-01" -p date "2018-01-31" If I get an error while it is running the first notebook, the process continues executing the second one. In other words, an error in one of the notebooks doesn't "break" the overall script. As far as I remember with normal python scripts