EuAndreh@programming.dev to Programming@programming.dev · 4 days agoMultiline comments in POSIX sheuandre.orgexternal-linkmessage-square29linkfedilinkarrow-up111arrow-down13file-text
arrow-up18arrow-down1external-linkMultiline comments in POSIX sheuandre.orgEuAndreh@programming.dev to Programming@programming.dev · 4 days agomessage-square29linkfedilinkfile-text
minus-squareEuAndreh@programming.devOPlinkfedilinkarrow-up2·3 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 :)