Je n'ai pas bouclé dans l'ancien environnement des gens, mais j'avais du 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
$
Référence: 20.6. Urllib2 - Bibliothèque extensible pour l'ouverture d'URL - Documentation Python 2.7.x
Peut-être que celui-ci est un peu plus âgé?
$ python -c "import httplib;conn = httplib.HTTPSConnection('www.python.org');conn.request('GET','/');r1 = conn.getresponse();print r1.status, r1.reason"
200 OK
$
Référence: 20.7. Httplib - Client de protocole HTTP - Documentation Python 2.7.x
Si vous recherchez http avec une seule ligne en python, c'est une personne qui construit un serveur Web ci-dessous, donc non, il n'y a pas une seule ligne qui soit http get.
$ python -m SimpleHTTPServer 800
Référence: 20.19. SimpleHTTPServer - Concise HTTP Request Handler - Python 2.7.x Documentation
Contient-il en premier lieu perl? Si tel est le cas, il ressemble à ce qui suit. Eh bien, s'il y a un module.
$ perl -MLWP::Simple -le'print get shift' http://www.dan.co.jp/
Référence: Leave one-liner to perl
wget? Vous ne savez pas.
c'est tout.
Recommended Posts