Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
5
Task/HTTP/REXX/http-1.rexx
Normal file
5
Task/HTTP/REXX/http-1.rexx
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
/* ft=rexx */
|
||||
/* GET2.RX - Display contents of an URL on the terminal. */
|
||||
/* Usage: rexx get.rx http://rosettacode.org */
|
||||
parse arg url .
|
||||
'curl' url
|
||||
8
Task/HTTP/REXX/http-2.rexx
Normal file
8
Task/HTTP/REXX/http-2.rexx
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
/* ft=rexx */
|
||||
/* GET2.RX - Display contents of an URL on the terminal. */
|
||||
/* Usage: rexx get2.rx http://rosettacode.org */
|
||||
parse arg url .
|
||||
address system 'curl' url with output stem stuff.
|
||||
do i = 1 to stuff.0
|
||||
say stuff.i
|
||||
end
|
||||
6
Task/HTTP/REXX/http-3.rexx
Normal file
6
Task/HTTP/REXX/http-3.rexx
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
/* 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 ''
|
||||
Loading…
Add table
Add a link
Reference in a new issue