RosettaCodeData/Task/HTTP/REXX/http-3.rexx
2016-12-05 22:15:40 +01:00

6 lines
237 B
Rexx

/* ft=rexx */
/* GET3.RX - Display contents of an URL on the terminal. */
/* Usage: rexx get3.rx http://rosettacode.org */
parse arg url .
address system 'curl' url with output fifo ''
address system 'more' with input fifo ''