#Km91#@sh.itjust.works to linuxmemes@lemmy.world · 1 day agoFeels more polite for sure.sh.itjust.worksimagemessage-square95fedilinkarrow-up11.06Karrow-down19
arrow-up11.05Karrow-down1imageFeels more polite for sure.sh.itjust.works#Km91#@sh.itjust.works to linuxmemes@lemmy.world · 1 day agomessage-square95fedilink
minus-squareFmstrat@lemmy.worldlinkfedilinkarrow-up3·19 hours agoPartly right in bash: set -e; echo 1; echo 2; is the same as echo 1 && echo 2 So if you see the -e in a script, it’s to keep the function clean.
Partly right in bash:
set -e; echo 1; echo 2;is the same as
echo 1 && echo 2So if you see the
-ein a script, it’s to keep the function clean.