jkercher@programming.devtolinuxmemes@lemmy.world•My heart goes out to shell programmers who have to support posix shEnglish
2·
5 hours agoI was never a fan of set -e
. I prefer to do my own error handling. But, I never understood why pipefail wasn’t the default. A failure is a failure. I would like to know about it!
Woah, that
((i++))
triggered a memory I forgot about. I spent hours trying to figure out what fucked up my$?
one day.When I finally figured it out: “You’ve got to be kidding me.”
When i fixed with
((++i))
: “SERIOUSLY! WTAF Bash!”