0

シェル スクリプトの while ループで ssh コマンドを使用してリモート システムに接続する方法についてサポートが必要です。シェル スクリプトから ssh を使用して 1 つのリモート システムに接続できました。以下に示すサンプルコードスニペットを見つけてください…..

ssh "root@148.147.179.100" ARG1=$rpmFileName 'bash -s' <<'ENDSSH'        
  echo ">>Checksum ..."
  md5sum /root/$ARG1
ENDSSH

ループ内で同じコードを実行しようとすると、「構文エラー:予期しないファイルの終わり」というエラーが表示され、解決できませんでした。

しかし、同じコードを別のスクリプト ファイルに配置し、そのファイルを別のスクリプトの while ループで使用すると、機能します。

誰でも解決策を教えてもらえますか。


以下のコード全体を見つけてください...

#!/bin/sh
rpmFileName=""
file="serverIps.txt"
dir="/home/rtulluri/downloads/EVAT-1123/AxisTar";
numberOfIps=0
axisTarfileTarget='/var'
#This function checks whether given ip is valid  or not
#returns 0 for valid ip, 1 for invalid ip
function valid_ip()
{
    local  ip=$1
    local  stat=1
    if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]
    then
        OIFS=$IFS
        IFS='.'
        ip=($ip)
        IFS=$OIFS
        [[ ${ip[0]} -le 255 && ${ip[1]} -le 255 \
            && ${ip[2]} -le 255 && ${ip[3]} -le 255 ]]
        stat=$?
    fi
    #echo "stat = $stat"
    return $stat
}
#Check whether given file exists or not
if [ -s $file ]
then
 echo "$file exists"
else
  echo "$file doesn't exist"
  echo "exiting ........"
  exit
fi
IFS=,
echo "---------------"
while read sysType serverIp uid pwd
do

  sysType="${sysType#"${sysType%%[![:space:]]*}"}"   # remove leading whitespace characters
  sysType="${sysType%"${sysType##*[![:space:]]}"}"   # remove trailing whitespace characters
  serverIp="${serverIp#"${serverIp%%[![:space:]]*}"}"   # remove leading whitespace characters
  serverIp="${serverIp%"${serverIp##*[![:space:]]}"}"   # remove trailing whitespace characters

  uid="${uid#"${uid%%[![:space:]]*}"}"   # remove leading whitespace characters
  uid="${uid%"${uid##*[![:space:]]}"}"   # remove trailing whitespace characters

  pwd="${pwd#"${pwd%%[![:space:]]*}"}"   # remove leading whitespace characters
  pwd="${pwd%"${pwd##*[![:space:]]}"}"   # remove trailing whitespace characters

  if [ -n "$serverIp" ]
  then
     valid_ip $serverIp
     #Assign the return value to a variable
     isValidIp=$?
   else
      isValidIp=1
  fi

  if [ $isValidIp -eq "0" ]
    then
       numberOfIps=$(( $numberOfIps + 1 ))
       echo "$numberOfIps) $serverIp --> is valid"     

       if [ "$sysType" = "ebox" ]
       then
               echo "$serverIp is an eBox device.."
           echo "About to pass $serverIp as argument to connct.sh"
           #./connct.sh $serverIp
           ssh "$address" ARG1=$rpmFileName 'bash -s' <<'ENDSSH'
        echo ">>Checksum ..."
           ENDSSH
        fi
    else
       echo "$serverIp --> is invalid"
    fi    
    echo ""
done < $file
4

1 に答える 1

0

「-n」ssh スイッチを使用してみてください。

例えば:

for i in {1..7}
do
    ssh -n myhost$i mycommand
done
于 2012-08-03T12:54:00.200 に答える