當前位置:首頁 » 編程軟體 » shell腳本自動輸入

shell腳本自動輸入

發布時間: 2024-11-22 08:12:43

❶ shell腳本中如何實現scp自動輸入密碼

配置ssh認證就可以不輸入密碼了,可以使用這個鏈接的zcmd工具,https://www.ibm.com/developerworks/community/wikis/home?lang=en#!/wiki/ztools

linux Shell中如何自動輸入命令需要接受的鍵盤輸入

傳遞互動式參數的話,你可以試試這種,比如創建分區的一個例子:

echo"p主分區

1第一分區

指定默認從1開始

+200M分區200M

t更改分區類型

若只有一個則不需要指定分區

8elvm分區

w"|fdisk/dev/sdb

❸ shell 腳本怎樣自動接收輸入

不知道你說的自動接收是什麼意思,是需要等待用戶輸入,還是直接來源於其他變數

#腳本執行過程中,等待用戶輸入
read-p"Pleaseinputastring:"str
echoYouInput"$str"

#其他腳本調用my_shell.sh,傳入參數arg1,arg2
my_shell.sharg1arg2

#my_shell.sh中使用傳入的兩個參數
#輸出arg1
echo$1
#輸出arg2
echo$2

❹ 安卓設備中在執行bat腳本時abd shell自動輸入密碼並執行命令怎麼寫

可以使用 echo 命令和管道符 | 將密碼輸入到 adb shell 的命令中。假設你的密碼為 mypassword,需要執行的命令為 mycommand,那麼彎彎虧可以這樣寫:
echo mypassword | adb shell mycomman
在上面的命令中,echo mypassword 將密碼輸出到標准輸出流,然後通過管道符 | 將標准輸出流連接到 adb shell mycommand 命令的標准輸入流中,這樣就實現了自動輸入密碼並執行命令埋神的效鬧談果。

❺ shell 腳本。自動安裝軟體,遇到要輸入yes怎麼自動輸入,不用人為介入

使用expect 下的spawn命令:
如:
expect << EOF

set timeout 5
spawn ssh -l $hostuser $hostaddr

expect {
"yes/no)?" { send "yes\r";exp_continue }
"assword:" { send "$passwd\r" }
}

expect "$hostuser*"
send "ssh-keygen -t rsa\r"

expect "Enter file in which to save the key*"
send "\r"
expect {
"(y/n)?" { send "n\r";exp_continue }
"Enter passphrase*" { send "\r";exp_continue }
"Enter same passphrase again:" { send "\r" }
}
interact
EOF

❻ 可不可以用腳本編一個自動輸入賬號密碼的程序,比如上QQ,只要點一下程序就自動上了

on error resume next
dim path
set shell=CreateObject("WScript.shell")
path=shell.RegRead("HKLM\SOFTWARE\Tencent\PLATFORM_TYPE_LIST\1\TypePath")
if path="" then
path=shell.RegRead("HKCR\QQ\shell\open\command\")
path = Mid(path, 2, InStrRev(path, ".") + 2)
end if
set short=CreateObject("Scripting.filesystemObject")
set F=short.getfile(path)
Path=F.ShortPath

QQUin="QQ號"
QQPwdHash="密碼"
Shell.run(Path & " /START QQUIN:" & QQUin & " PWDHASH:" & QQPwdHash & " /STAT:40")
其中的密碼是你的密碼用了BASE64+MD5轉換的

❼ linux里的su命令需要輸入密碼,如何在shell腳本里實現自動輸入su命令和密碼

看過man su了,su並不帶輸入密碼的參數,所以需要使用su命令切換用戶的話,只能手動輸入密碼。

❽ Linux shell腳本如何自動運行程序並輸入命令

我建議你使用shell的spawn命令,很好用的,能實現你說的功能!

❾ linux shell腳本每五分鍾自動增加一條信息到另一個文本文件中

1)腳本 script.sh 內容如下:
#!/bin/bash
while true
do
echo "一螞戚譽條信息" >>悶段file.txt
sleep 300
done

2)賦予可執行權仔畝限
chmod +x script.sh

3)後台執行腳本
script.sh &

熱點內容
2019速騰買什麼配置好 發布:2025-01-11 01:35:07 瀏覽:828
博越存儲異常 發布:2025-01-11 01:24:31 瀏覽:917
我的世界還原中國伺服器版圖 發布:2025-01-11 01:18:45 瀏覽:383
pythonopenasfile 發布:2025-01-11 01:17:06 瀏覽:972
hbasejavaapi 發布:2025-01-11 01:11:09 瀏覽:746
我的世界pe版飢餓伺服器 發布:2025-01-11 01:09:39 瀏覽:485
異構資料庫數據同步 發布:2025-01-11 01:09:04 瀏覽:957
c語言三角波 發布:2025-01-11 01:02:11 瀏覽:78
php正則轉義 發布:2025-01-11 01:00:03 瀏覽:691
手拉的箱包上的密碼鎖一般是多少 發布:2025-01-11 00:59:55 瀏覽:8