Home
Blog
All tags
Pieces of code
Bioinfo trainings
Machine learning
Online books
Coursera
Teaching
Contact
CV
View on GitHub
Bash - exit if error (
set -e
)
15 Oct 2017
Add
set -e
at the beginning of the script to exit the script if an error occurs.
[
bash
]