如何使用shell

时间:2015-04-24 19:58:05

标签: shell

我已经做了很多搜索,我似乎无法使用shell脚本找到如何执行此操作。基本上,我是从远程服务器复制文件,如果它不存在我想做其他事情。我下面有一个数组,但我试图直接引用它,但它仍然返回false。

我是全新的,所以请善待:)

declare -a array1=('user1@user1.user.com');

for i in "${array1[@]}"
do
   if [ -f "$i:/home/user/directory/file" ];
   then
     do stuff
   else
     Do other stuff
   fi
done

2 个答案:

答案 0 :(得分:4)

试试这个:

ssh -q $HOST [[ -f $i:/home/user/directory/file ]] && echo "File exists" || echo "File does not exist";

或者像这样:

if ssh $HOST stat $FILE_PATH \> /dev/null 2\>\&1
then
  echo "File exists"
else
  echo "File not exist"
fi

答案 1 :(得分:2)

假设您使用scpssh进行远程连接,这样的事情就可以做到你想要的。

declare -a array1=('user1@user1.user.com');

for i in "${array1[@]}"; do
    if ssh -q "$i" "test -f /home/user/directory/file"; then
        scp "$i:/home/user/directory/file" /local/path
    else
        echo 'Could not access remote file.'
    fi
done

或者,如果您不一定需要关心不存在的远程文件与其他可能的scp错误之间的区别,那么以下操作就可以了。

declare -a array1=('user1@user1.user.com');

for i in "${array1[@]}"; do
    if ! scp "$i:/home/user/directory/file" /local/path; then
        echo 'Remote file did not exist.'
    fi
done