@[email protected] to Programmer [email protected]English • 2 years agothisIsGoingToBeASeriousDebateprogramming.devimagemessage-square40fedilinkarrow-up1302
arrow-up1302imagethisIsGoingToBeASeriousDebateprogramming.dev@[email protected] to Programmer [email protected]English • 2 years agomessage-square40fedilink
minus-squarepranalesslinkfedilink1•2 years 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.