script 编写的良好习惯:
在每个scrip的开头都必须记录好:
1.script的功能
2.script的版本信息
3.script的作者与联系方式
4.script的版权宣告方式
5.script的历史记录
6.script内较特殊的指令,使用绝对路径来下达
7.script运作时需要的环境变量预先宣告与设定
test -e 该档名是否存在?
-f 该档名是否为档案(file)
-d 该文件名是否为目录
两个档案之间的比较:test file1 -nt file2
-nt 判断file1 是否比file2 新
-ot 判断file1 是否比file2 旧
-ef 判断file1与file2 是否为同一档案