@TadoTheRustacean@programming.dev to Programmer Humor@programming.devEnglish • 1 year agothisIsGoingToBeASeriousDebateprogramming.devimagemessage-square62fedilinkarrow-up1302arrow-down133
arrow-up1269arrow-down1imagethisIsGoingToBeASeriousDebateprogramming.dev@TadoTheRustacean@programming.dev to Programmer Humor@programming.devEnglish • 1 year agomessage-square62fedilink
minus-squarepranalesslinkfedilink1•1 year agoYes and no. While coreutils does provide an echo binary, shells also have a built-in for optimisation purposes. At first I had the code calling the binary directly, but then changed it to spawning a shell (and so using the builtin). It’s very cursed either way.
Isn’t echo a shell builtin?
Yes and no. While coreutils does provide an
echo
binary, shells also have a built-in for optimisation purposes.At first I had the code calling the binary directly, but then changed it to spawning a shell (and so using the builtin). It’s very cursed either way.