RosettaCodeData/Task/HTTPS-Authenticated/PicoLisp/https-authenticated.l
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

4 lines
181 B
Common Lisp

(let (User "Bill" Pass "T0p5ecRet" Url "https://www.example.com")
(in (list 'curl "-u" (pack User ': Pass) Url)
(while (line)
(doSomeProcessingWithLine @) ) ) )