RosettaCodeData/Task/Get-system-command-output/OoRexx/get-system-command-output-2.rexx
2023-07-01 13:44:08 -04:00

8 lines
121 B
Rexx

cmd='dir tu*.rex /od'
cmd '| rxqueue'
Say 'Output of "'cmd'"'
Say
Do While queued()>0
parse pull text
Say text
End