这是我的代码:
nb_lignes=`wc -l $1 | cut -d " " -f1`
for i in $(seq $(($nb_lignes - 1)) )
do
machine=`head $1 -n $i | tail -1`
machine1=`head $1 -n $nb_lignes | tail -1`
ssh root@$machine -x " scp /home/file.txt root@$machine1:/home && rm -r /home/file.txt"
done
我想在scp et rm之前验证file.txt是否存在于这样的机器中,请问我该如何修改这个脚本?
谢谢。
答案 0 :(得分:1)
您可以使用test
命令:test -f file && scp ...
ssh root@$machine -x " test -f /home/file.txt && scp /home/file.txt
root@$machine1:/home && rm -r /home/file.txt"