1、变量检查,判空
a.直接变量判断 if [ ! $1 ];then ..empty..fi
b.变量通过" "引号引起来 if [ ! -n "$1" ];then ..empty...fi
2、脚本开头一般要执行环境变量
第一行: . ~/.bashrc