shell - python如何实现在一个脚本里的多次交互?
黄舟
黄舟 2017-04-18 09:30:31
0
1
757

万恶的主管要求写一个针对于阿里云服务器的自动挂载的脚本,其实这种脚本不难,网上找找随便都有,但是比较恶心的是,主管非要求要用python去写,美其名曰“可读性强”。

于是本菜鸟为了绩效就开始写,但是写着写着就到了一个窘境,因为在 fdisk /dev/vdb的时候,是需要连续输入:“n p 1 回车 回车 p w ” 这六个信息需要反馈给系统才能顺利的分区,要是一次交互,到还好办,但是这样一次性要多次交互怎么破?难道必须要用pexpect去实现吗?

使用 os.system("fisk /dev/xvdb << End
n
p
1

p
w
End")
频频报错
本菜鸟环境是python 2.6.6

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

全部回覆(1)
Peter_Zhu

用 subprocess 即可。舉個例子,下面程式需要輸入名字,年齡:

print 'what is your name?'
name = raw_input()
print 'your name is ' + name
print 'what is your age?'
age = raw_input()
print 'your age is ' + age

我們可以像下面這樣,用互動輸入 John 和 20 來呼叫上面的程式:

from subprocess import Popen, PIPE, STDOUT
p = Popen(['python', 'func.py'], stdout=PIPE, stdin=PIPE, stderr=STDOUT)
output = p.communicate(input='John\n20\n')
// print output

StackOverflow 有許多此類問題哦!
Interactive input/output using python
Python subprocess and user interaction
Python - How do I pass a string into subprocess.Popen (using the stdin argument)?

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!