标签:
对于$!和$?这类依赖上下文的变量,当其作为命令行中的一部分被推送到远程主机执行时,一定要考虑到的它的特殊性,否则脚本很难按你预料的方式执行,并且由此引起的错误也很难定位。第一个例子是通过SSH向远程主机推送"创建用户组和用户“:
addUser()
{
node=$1
user=$2
group=$3
ssh -T root@$node <<EOF
#add group if not exists
egrep "^$group" /etc/group >& /dev/null
if [ "$?" != "0" ]
then
groupadd "$group"
fi
#add user if not exists
egrep "^$user" /etc/passwd >& /dev/null
if [ "$?" != "0" ]
then
useradd -g "$group" "$user"
fi
EOF
}
类似问题也出现在下面这段试图获取前一个后台运行进程的PID的脚本里:
ssh -T root@hdcoe01<<EOF
su -l hive -c "nohup $HIVE_HOME/bin/hive --service metastore -hiveconf hive.log.file=hive-metastore.log -hiveconf hive.log.dir=$HIVE_LOG_DIR>$HIVE_LOG_DIR/hive-metastore.out 2>$HIVE_LOG_DIR/hive-metastore.log &"
su -l hive -c "echo $!|cat>$HIVE_PID_DIR/hive-metastore.pid"
EOF
简单地总结是:如果你打算通过SSH向远程主机推送命令,当命令中使用到$?或$1这类完全依赖上下文的变量时,你需要特别小心了,通常情况下,它们的取值完全不是你期望的!
Shell陷阱:$!和$?等变量在推送到远程主机执行时的取值问题
标签:
原文地址:http://blog.csdn.net/bluishglc/article/details/43733197