RosettaCodeData/Task/HTTPS-Authenticated/PicoLisp/https-authenticated.l

5 lines
181 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(let (User "Bill" Pass "T0p5ecRet" Url "https://www.example.com")
(in (list 'curl "-u" (pack User ': Pass) Url)
(while (line)
(doSomeProcessingWithLine @) ) ) )