欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

Shell脚本常用模板

程序员文章站 2023-11-17 16:48:04
作为一个运维人员编写Shell脚本是很平常的,一个格式好的脚本不仅赏心悦目,后期自己和别人也易于维护。 下面的脚本就是我自己的shell编写格式,如下: 测试如下: ......

 

  作为一个运维人员编写shell脚本是很平常的,一个格式好的脚本不仅赏心悦目,后期自己和别人也易于维护。

  下面的脚本就是我自己的shell编写格式,如下:

 1 [root@mini05 20180930-2]# cat template.sh 
 2 #!/bin/sh
 3 ################ version info ##################
 4 # create date: 2018-09-29
 5 # author:      zhang
 6 # mail:        zhang@xxxx.com
 7 # version:     1.0
 8 # attention:   shell脚本模板
 9 ################################################
10 
11 # 加载环境变量 
12 # 如果脚本放到crontab中执行,会缺少环境变量,所以需要添加以下3行
13 . /etc/profile
14 . ~/.bash_profile
15 . /etc/bashrc
16 
17 # 脚本所在目录即脚本名称
18 script_dir=$( cd "$( dirname "$0"  )" && pwd )
19 script_name=$(basename ${0})
20 # 日志目录
21 log_dir="${script_dir}/log"
22 [ ! -d ${log_dir} ] && {
23   mkdir -p ${log_dir}
24 }
25 
26 errormsg(){
27   echo "usage:$0 arg1 arg2 arg3"
28   exit 2
29 }
30 
31 
32 docode() {
33   echo $1
34   echo $2
35   echo $3
36 }
37 
38 main() {
39   if [ $# -ne 3 ];then
40     errormsg
41   fi
42   docode "$1" "$2" "$3"
43 }
44 
45 # 需要把隐号加上,不然传入的参数就不能有空格
46 main "$@"

 

测试如下:

 1 [root@mini05 20180930-2]# ./template.sh 
 2 usage:./template.sh arg1 arg2 arg3
 3 [root@mini05 20180930-2]# ./template.sh 111
 4 usage:./template.sh arg1 arg2 arg3
 5 [root@mini05 20180930-2]# ./template.sh 111 '222 333'
 6 usage:./template.sh arg1 arg2 arg3
 7 [root@mini05 20180930-2]# ./template.sh 111 '222 333' "444 555"
 8 111
 9 222 333
10 444 555
11 [root@mini05 20180930-2]# ./template.sh 111 '222 333' "444 555" "666"
12 usage:./template.sh arg1 arg2 arg3