Y
Hacker News
new
|
ask
|
show
|
jobs
by
xorcist
2 days ago
In this specific case, echo can't fail to there's no need for any of that:
[ -z "$1" ] && echo "fail" >&2 && exit 1
1 comments
layer8
2 days ago
Echo will fail here when stderr is closed. For example when the caller of the script pipes stderr to another command and that command exits.
link