Shell脚本使用备忘

  1. if判断:
    if [ v2 ]; then
    do
    xxxx
    done

注意方括号那里的空格

  1. 赋值:
    v1="hello"

注意等号前后不能有空格

  1. 查看远程服务器某个文件是否存在:
    sshpass -p ip "test -e $filePath"

注意双引号

你可能感兴趣的:(Shell脚本使用备忘)