23 lines
329 B
Python
23 lines
329 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
import socket
|
||
|
import sys
|
||
|
|
||
|
if len(sys.argv) < 3:
|
||
|
print "python client.py <ip> <file>\n"
|
||
|
sys.exit(0)
|
||
|
|
||
|
port = 80
|
||
|
host = sys.argv[1]
|
||
|
pfile = sys.argv[2]
|
||
|
|
||
|
f = open(pfile, "rb")
|
||
|
buf = f.read()
|
||
|
f.close()
|
||
|
|
||
|
s = socket.socket()
|
||
|
s.connect((host, port))
|
||
|
sent = s.send(buf)
|
||
|
print "Sent %d bytes\n" % sent
|
||
|
s.close()
|