$ python -m Simple-HTTPserver.py
Serving HTTP on 192.168.88.132 port 8000 ...
$ curl 192.168.88.132:8000
3. To display the content of the script, for example Simple-HTTPserver.py:$ curl 192.168.88.132:8000/Simple-HTTPserver.py import sys import BaseHTTPServer from SimpleHTTPServer import SimpleHTTPRequestHandler HandlerClass = SimpleHTTPRequestHandler ServerClass = BaseHTTPServer.HTTPServer Protocol = "HTTP/1.0" if sys.argv[1:]: port = int(sys.argv[1]) else: port = 8000 server_address = ('192.168.88.132', port) HandlerClass.protocol_version = Protocol httpd = ServerClass(server_address, HandlerClass) sa = httpd.socket.getsockname() print "Serving HTTP on", sa[0], "port", sa[1], "..." httpd.serve_forever()4. To download the script either use wget or redirect the output of above to the file Simple-HTTPserver.py. Please modify the server address to meet your need.
$ wget 192.168.88.132:8000/Simple-HTTPserver.py
$ curl 192.168.88.132:8000/Simple-HTTPserver.py > Simple-HTTPserver.py
No comments:
Post a Comment