Closed laurenthuberdeau closed 2 months ago
We can speed up certain programs by removing set -u to allow reads to undefined memory locations. We generally want to use set -u as it can catch buffer overflows, but it can be useful to have the option.
set -u
Context
We can speed up certain programs by removing
set -u
to allow reads to undefined memory locations. We generally want to useset -u
as it can catch buffer overflows, but it can be useful to have the option.