RosettaCodeData/Task/Shell-one-liner/NetRexx/shell-one-liner.netrexx

2 lines
140 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
$ TNRX=`mktemp T_XXXXXXXXXXXX` && test ! -e $TNRX.* && (echo 'say "Goodbye, World!"' >$TNRX; nrc -exec $TNRX; rm $TNRX $TNRX.*; unset TNRX)