1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-07-13 16:04:13 +00:00
reactos/modules/rostests/tests/oskittcp/cmd_oskit.py

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)