第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

我想自動(dòng)的實(shí)現(xiàn)它,請問應(yīng)該在A中怎么寫才會(huì)自動(dòng)填入這些內(nèi)容?

我想自動(dòng)的實(shí)現(xiàn)它,請問應(yīng)該在A中怎么寫才會(huì)自動(dòng)填入這些內(nèi)容?

UYOU 2023-04-15 22:18:35
在寫一個(gè)shell腳本A,其中調(diào)用了另一個(gè)腳本,例如test.sh但是test.sh中有交互的內(nèi)容需要用戶依次輸入 a 回車 b 回車 回車 回車我想自動(dòng)的實(shí)現(xiàn)它,請問應(yīng)該在A中怎么寫才會(huì)自動(dòng)填入這些內(nèi)容,前提是tesh.sh執(zhí)行的過程還要讓用戶看到,不能把它重定向
查看完整描述

2 回答

?
MM們

TA貢獻(xiàn)1886條經(jīng)驗(yàn) 獲得超2個(gè)贊

用pexpect,以下代碼供參考:

#!/usr/bin/python

import sys 
import pexpect

password = 'password'expect_list = ['(yes/no)', 'password:']p = pexpect.spawn('ssh username@localhost ls')
try:
    while True:
        idx = p.expect(expect_list)
        print p.before + expect_list[idx],        if idx == 0:
            print "yes"
            p.sendline('yes')
        elif idx == 1:
            print password            p.sendline(password)
except pexpect.TIMEOUT:
    print >>sys.stderr, 'timeout'except pexpect.EOF:
    print p.before
    print >>sys.stderr, '<the end>'

輸出:

username@localhost's password: password

Permission denied, please try again.
username@localhost's password: password

Permission denied, please try again.
username@localhost's password: password

Permission denied (publickey,gssapi-with-mic,password).

<the end>


查看完整回答
反對 回復(fù) 2023-04-18
?
動(dòng)漫人物

TA貢獻(xiàn)1815條經(jīng)驗(yàn) 獲得超10個(gè)贊

用管道輸入,然后echo出來,給用戶看
A.sh

echo -e a\nb\n\n\n | bash test.shecho aecho bechoechoecho

如果管道輸入滿足不了你的需求,就用expect,這個(gè)比較復(fù)雜了。


查看完整回答
反對 回復(fù) 2023-04-18
  • 2 回答
  • 0 關(guān)注
  • 185 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)