EuAndreh@programming.dev to Programming@programming.dev · 15 days agoMultiline comments in POSIX sheuandre.orgexternal-linkmessage-square29linkfedilinkarrow-up111file-text
arrow-up111external-linkMultiline comments in POSIX sheuandre.orgEuAndreh@programming.dev to Programming@programming.dev · 15 days agomessage-square29linkfedilinkfile-text
minus-squareEuAndreh@programming.devOPlinkfedilinkarrow-up2·14 days agoAFAICT, not really, looks line POSIX sh at a glance. Just don’t forget to : <<'EOF' instead of : <<EOF. But : is arguably simpler than cat, one fewer fork/exec call plus no open(2) on /dev/null.
AFAICT, not really, looks line POSIX sh at a glance. Just don’t forget to
: <<'EOF'instead of: <<EOF.But
:is arguably simpler thancat, one fewer fork/exec call plus noopen(2)on/dev/null.I like it, thanks :)