Ich habe mich nicht in der alten Umgebung der Menschen zusammengerollt, aber ich hatte Python.
$ python -c "import urllib2;r=urllib2.urlopen('http://www.python.org');print r.info();"
Server: nginx
Content-Type: text/html; charset=utf-8
X-Frame-Options: SAMEORIGIN
X-Clacks-Overhead: GNU Terry Pratchett
Content-Length: 47424
Accept-Ranges: bytes
Date: Tue, 27 Sep 2016 11:07:15 GMT
Via: 1.1 varnish
Age: 2297
Connection: close
X-Served-By: cache-sin6921-SIN
X-Cache: HIT
X-Cache-Hits: 10
Vary: Cookie
Public-Key-Pins: hogehoge
$
Referenz: 20.6. Urllib2 - Erweiterbare Bibliothek zum Öffnen von URLs - Python 2.7.x-Dokumentation
Vielleicht ist dieser etwas älter?
$ python -c "import httplib;conn = httplib.HTTPSConnection('www.python.org');conn.request('GET','/');r1 = conn.getresponse();print r1.status, r1.reason"
200 OK
$
Referenz: 20.7. Httplib - HTTP-Protokollclient - Python 2.7.x-Dokumentation
Wenn Sie nach http mit einem Liner in Python suchen, ist es eine Person, die unten einen Webserver erstellt. Nein, es gibt keinen Liner, der http get ist.
$ python -m SimpleHTTPServer 800
Referenz: 20.19. SimpleHTTPServer - Kurzer HTTP-Anforderungshandler - Python 2.7.x-Dokumentation
Enthält es überhaupt Perl? Wenn ja, sieht es wie folgt aus. Nun, wenn es ein Modul gibt.
$ perl -MLWP::Simple -le'print get shift' http://www.dan.co.jp/
Referenz: Einzeiler Perl überlassen
Sie wissen es nicht.
das ist alles.
Recommended Posts