RosettaCodeData/Task/Get-system-command-output/OoRexx/get-system-command-output-2.rexx

9 lines
121 B
Rexx
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
cmd='dir tu*.rex /od'
cmd '| rxqueue'
Say 'Output of "'cmd'"'
Say
Do While queued()>0
parse pull text
Say text
End