All pastes #365387 Raw Edit

Something

public text v1 · immutable
#365387 ·published 2007-02-20 22:30 UTC
rendered paste body
$ [ "$foo" != "bar" ] && echo true
true
$ export foo="bar"
$ [ "$foo" = "bar" ] && echo true
true
$ [ "" != "bar" ] && echo true
true