@b0rk_reruns if you're scripting rather than tapping raw bash into the terminal, this should give the same behaviour
"#!/bin/bash -e -u -o"
Top-level
@b0rk_reruns if you're scripting rather than tapping raw bash into the terminal, this should give the same behaviour "#!/bin/bash -e -u -o" 1 comment
|
@patterfloof @b0rk_reruns No, you can only put one option on a #! line. I'm not sure whether the kernel will ignore the second two options or whether it will pass "-e -u -o" to bash as a single argv element with internal spaces, but either way it won't do what you wanted.