#!/usr/bin/env python2
import expyct
import time

e = expyct.expyct ('/bin/sh -i')
e.timeout=60
e.expect(['#', '\$'])
e.send ('ls -la /\n')

i = e.expect (['foo','(d[aeiou]v)'])
print('\nRead before match>%s<' % e.before)
print('Matched:>%s<' % e.matched) 
print('index:', i)

i = e.expect(['#', '\$'])
print('\nRead before match>%s<' % e.before)
print('Matched:>%s<' % e.matched)
print('index:', i)
e.send('exit\n')
print('Sent exit')
time.sleep(2)
print('isAlive:', e.isAlive())

# This should test timeout...
i = e.expect ('#####')
print('\nRead before match>%s<' % e.before)
print('Matched:>%s<' % e.matched)
print('index:', i)


예제 #2
0
#!/usr/bin/env python
import os, time, signal
import expyct

e = expyct.expyct('/bin/sh', '-i')
print 'pid,fd:', e.pid, e.fd
print 'isAlive:', e.isAlive()
# Treat it brusquely.
print 'sending SIGKILL...'
os.kill(e.pid, signal.SIGKILL)
time.sleep(1)
print os.read(e.fd, 1000)
print 'isAlive:', e.isAlive()
e.expect('\#')
e.send('ls -la /\n')
r, m, i = e.expect('\#')
print r
예제 #3
0
#!/usr/bin/env python2
import expyct
import time

e = expyct.expyct ('/bin/sh -i')
e.timeout=60
e.expect(['#', '\$'])
e.send ('ls -la /\n')

i = e.expect (['foo','(d[aeiou]v)'])
print '\nRead before match>%s<' % e.before
print 'Matched:>%s<' % e.matched 
print 'index:', i

i = e.expect(['#', '\$'])
print '\nRead before match>%s<' % e.before
print 'Matched:>%s<' % e.matched
print 'index:', i
e.send('exit\n')
print 'Sent exit'
time.sleep(2)
print 'isAlive:', e.isAlive()

# This should test timeout...
i = e.expect ('#####')
print '\nRead before match>%s<' % e.before
print 'Matched:>%s<' % e.matched
print 'index:', i


예제 #4
0
#!/usr/bin/env python
import os, time, signal
import expyct

e = expyct.expyct ('/bin/sh', '-i')
print 'pid,fd:', e.pid, e.fd
print 'isAlive:', e.isAlive()
# Treat it brusquely.
print 'sending SIGKILL...'
os.kill (e.pid, signal.SIGKILL)
time.sleep (1)
print os.read(e.fd, 1000)
print 'isAlive:', e.isAlive()
e.expect('\#')
e.send ('ls -la /\n')
r,m,i = e.expect ('\#')
print r