You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Used in #679. The great thing about Bash's trap is that you can trap EXIT and it will trigger on all other kinds of signals that make the program exit. It's a bit (very if you want to make it compatible with various POSIX shells) complicated to handle cleanup functions correctly without this, as simply trapping INT will prevent it from exiting on INT.
Used in #679. The great thing about Bash's trap is that you can trap EXIT and it will trigger on all other kinds of signals that make the program exit. It's a bit (very if you want to make it compatible with various POSIX shells) complicated to handle cleanup functions correctly without this, as simply trapping INT will prevent it from exiting on INT.
The text was updated successfully, but these errors were encountered: