RosettaCodeData/Task/Hostname/REXX/hostname-5.rexx
2023-07-01 13:44:08 -04:00

6 lines
106 B
Rexx

/* Rexx */
address command "hostname -f" with output stem hn.
do q_ = 1 to hn.0
say hn.q_
end q_
exit