ユーザー入力が必要なスクリプトがあります。ローカルで実行すると、私は好きなように動作しますが、SSHを介して実行したいと思います。
スクリプトを実行する一般的な方法を試しました。
ssh someaccount@somemachine 'mysscript.sh'
ssh someaccount@somemachine 'bash -s' < myscript.sh'
ただし、実行するとユーザー入力を待たず、メニューから選択することもできません。
#!/bin/bash
# Bash Menu Script Example
echo -n "What machine is sick ?"
read machine
PS3='Please enter your choice: '
options=("Ping $machine" "Option 2" "Option 3" "Quit")
select opt in "${options[@]}"
do
case $opt in
"Ping $machine")
echo "you chose to ping $machine"
ping -c1 $machine
;;
"Option 2")
echo "you chose choice 2"
;;
"Option 3")
echo "you chose choice 3"
;;
"Quit")
break
;;
*) echo invalid option;;
esac
done
ありがとう
答え1
コマンドラインから対話型コマンドを実行するには、ttyにリモート側に割り当てるように指示するssh
必要があります。ssh
(通常は問題ではなく、ほとんどの場合良い仮定です。)-t
ttyを割り当てるには、フラグを追加してください。
ssh -t someaccount@somemachine mysscript.sh
答え2
以下を行う必要があります。
root@debian:/home/mohsen# ssh [email protected] "~/test.sh"
[email protected]'s password:
What machine is sick ?192.168.1.4
1) Ping 192.168.1.4 3) Option 3
2) Option 2 4) Quit
Please enter your choice: 1
you chose to ping 192.168.1.4
PING 192.168.1.4 (192.168.1.4) 56(84) bytes of data.
64 bytes from 192.168.1.4: icmp_req=1 ttl=64 time=0.370 ms
--- 192.168.1.4 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.370/0.370/0.370/0.000 ms
Please enter your choice:
リモートで実行するための構文は次のとおりです。
ssh account@remote_machin "command_for_run_on_remote_machine"
上記の構文は、システム管理者のバックアップに使用されました。