我已经进行了很多搜索,但似乎无法找到如何使用Shell脚本执行此操作的方法。基本上,我是从远程服务器复制文件,如果不存在,我想做其他事情。我在下面有一个数组,但是我尝试直接引用它,但是它仍然返回false。
我是全新的,所以请客气:)
declare -a array1=('[email protected]');
for i in "${array1[@]}"
do
if [ -f "$i:/home/user/directory/file" ];
then
do stuff
else
Do other stuff
fi
done
最佳答案
假设您使用scp
和ssh
进行远程连接,则应执行以下操作。
declare -a array1=('[email protected]');
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=('[email protected]');
for i in "${array1[@]}"; do
if ! scp "$i:/home/user/directory/file" /local/path; then
echo 'Remote file did not exist.'
fi
done
关于shell - 如何使用Shell检查远程服务器上是否存在文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29856381/