mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
5368a4c682
svn path=/trunk/; revision=11362
10 lines
No EOL
182 B
Python
10 lines
No EOL
182 B
Python
from socket import *
|
|
import sys
|
|
|
|
s = socket(AF_INET,SOCK_DGRAM,0)
|
|
s.connect(('localhost',5001))
|
|
|
|
while 1:
|
|
sys.stdout.write('>> ')
|
|
line = sys.stdin.readline()
|
|
s.send('CMD ' + line) |