☆ Yσɠƚԋσʂ ☆@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 1 month agoLike programming in bashlemmy.mlimagemessage-square26fedilinkarrow-up1196arrow-down11
arrow-up1195arrow-down1imageLike programming in bashlemmy.ml☆ Yσɠƚԋσʂ ☆@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 1 month agomessage-square26fedilink
minus-squareTangentism@lemmy.mllinkfedilinkarrow-up3·1 month agoYou could write that as 1 line: [ -z "$var" ] && echo "empty" || echo "no it aint"
minus-squareOriel Jutty@infosec.exchangelinkfedilinkarrow-up6·1 month agoIncidentally, this is an anti-pattern: http://mywiki.wooledge.org/BashPitfalls#cmd1_.26.26_cmd2_.7C.7C_cmd3
minus-squareOriel Jutty@infosec.exchangelinkfedilinkarrow-up4·1 month ago@Tangentism @Ephera Did you mean: echo "${var:-empty}${var:+no it aint}" ?
You could write that as 1 line:
[ -z "$var" ] && echo "empty" || echo "no it aint"
Incidentally, this is an anti-pattern: http://mywiki.wooledge.org/BashPitfalls#cmd1_.26.26_cmd2_.7C.7C_cmd3
@Tangentism @Ephera Did you mean:
echo "${var:-empty}${var:+no it aint}"
?