HTTP: Difference between revisions

Undo revision 315438 by WdeCvfYlmB (talk)
(Undo revision 315439 by WdeCvfYlmB (talk))
(Undo revision 315438 by WdeCvfYlmB (talk))
Line 872:
<lang fishshell>lftp -c "cat http://www.w3.org/Home.html"</lang>
{{works with|BSD}}
<lang fishshell>ftp -o - http://www.w3rosettacode.org/Home.html ^ /dev/null</lang>
 
=={{header|Frink}}==
Frink's <CODE>read[<I>URL</I>]</CODE> function works with any URL type supported by your Java Virtual Machine, and returns the results as a single string.
<lang frink>print[read["http://frinklangwww.w3.org/Home.html"]]</lang>
<lang frink>
print[read["http://frinklang.org/"]]
</lang>
 
=={{header|Gastona}}==
10,327

edits