Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
nikau
on Oct 7, 2022
|
parent
|
context
|
favorite
| on:
Why doesn't Bash’s ‘set -e’ do what I expected? (2...
Yep that's a valid scenario, if you need more granularity than just fail or success then you will have to use a different method, e.g.
Status=0
Somecommand || status=$?
Then do logic based on status
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
Status=0
Somecommand || status=$?
Then do logic based on status