设为首页 加入收藏

TOP

Linux下Shell脚本编程(一)
2015-07-26 13:14:14 来源: 作者: 【 】 浏览:46
Tags:Linux Shell 脚本 编程

1、 shell脚本是什么
它是一种脚本语言,并非编程语言。
可以使用一些逻辑判断、循环等语法。
可以自定义子函数,是系统命令的集合。
shell脚本可以实现自动化运维,大大增加我们的工作效率。


2、shell脚本结构以及执行方法
开头行指定bash路径: #! /bin/bash
以#开头的行作为解释说明
#注释自己的脚本内容,方便自己查阅;utf8字符集,支持中文;
脚本的名字以.sh结尾,用于区分这是一个shell脚本
执行脚本方式有两种:
chmod a+x 1.sh? ? 添加x执行权限;
./1.sh 可以直接执行,或者写绝对路径/root/shell/1.sh
如果没有执行权限可以 bash 1.sh? ? 或 sh 1.sh
bash -x 1.sh 可以查看脚本执行过程
实验练习:
1234 [root@localhost shell]# cat 1.sh?
#!/bin/bash
#这是我的第一个脚本
echo "hello world"


[root@localhost shell]# ls -l
-rw-r--r-- 1 root root 60 6月? 16 19:28 1.sh
[root@localhost shell]# chmod a+x 1.sh?
[root@localhost shell]# ls -l
-rwxr-xr-x 1 root root 60 6月? 16 19:28 1.sh
[root@localhost shell]# ./1.sh
hello world
[root@localhost shell]# /root/shell/1.sh?
hello world
[root@localhost shell]# /bin/sh 1.sh
hello world
[root@localhost shell]# bash -x 1.sh?
+ echo 'hello world'
hello world


执行bash和sh是一样的,sh是bash的软连接文件;
[root@localhost ~]# ls -l /bin/bash?
-rwxr-xr-x. 1 root root 871700 10月 16 2014 /bin/bash
[root@localhost ~]# ls -l /bin/sh
lrwxrwxrwx. 1 root root 4 3月? 4 00:59 /bin/sh -> bash


3、学会date命令的用法
date? +%Y-%m-%d? ? date +%y-%m-%d 年月日
date? +%Y-%m-%d = date +%F 年月日
date? +%H:%M:%S = date +%T 时间
date +%s? 时间戳
date -d @1434248742? ? 根据时间戳算出当前时间
date -d "+1day" 一天后? ? date -d "-1day" 一天前
date -d? "-1month" 一月前
date -d? “-1min” 一分钟前
date +%w? ? date +%W 星期



实验练习:
[root@localhost shell]# date +%y
15
[root@localhost shell]# date +%Y
2015
[root@localhost shell]# date +%m
06
[root@localhost shell]# date +%d
16
[root@localhost shell]# date +%H
14
[root@localhost shell]# date +%M
01
[root@localhost shell]# date +%S
54


从1970年 01月01日0点0分开始算起到现在多少秒;
[root@localhost shell]# date +%s
1434434874
[root@localhost shell]# date -d @1434434874
2015年 06月 16日 星期二 14:07:54 CST


CST是中国时间 +8小时
[root@yonglinux shell]# date -d @0
1970年 01月 01日 星期四 08:00:00 CST


[root@localhost shell]# date +%F
2015-06-16
[root@localhost shell]# date +%T
14:04:17
[root@localhost shell]# date +%Y-%m-%d
2015-06-16
[root@localhost shell]# date +"%Y-%m-%d %H:%M:%S"
2015-06-16 14:05:13
[root@localhost shell]# date +"%F %T"
2015-06-16 14:05:38


周二


12 [root@localhost shell]# date +%w
2


今年的第多少周,24周


[root@localhost shell]# date +%W
24


全年有多少周,52周;
[root@localhost shell]# echo "365/7" | bc
52


[root@localhost shell]# date -d "-1 day"
2015年 06月 15日 星期一 14:16:31 CST
[root@localhost shell]# date -d "-1 day" +"%F %T"
2015-06-15 14:19:13
[root@localhost shell]# date -d "+1 day" +"%F %T"
2015-06-17 14:19:22
[root@localhost shell]# date -d "+1 month" +"%F %T"
2015-07-16 14:19:31
[root@localhost shell]# date -d "+1 year" +"%F %T"
2016-06-16 14:19:39
[root@localhost shell]# date -d "+1 week" +"%F %T"
2015-06-23 14:19:45
[root@localhost shell]# date -d "-10 hour" +"%F %T"
2015-06-16 04:19:59
[root@localhost shell]# date -d "-10 min" +"%F %T"
2015-06-16 14:10:15
[root@localhost shell]# date -d "-10 sec" +"%F %T"
2015-06-16 14:20:14


4、shell脚本中的变量
当脚本中使用某个字符串较频繁并且字符串长度很长时就应该使用变量代替。
使用条件语句时,常常使用变量? ? if [ $a -gt 1 ]; then ... ; fi
引用某个命令的结果时,用变量替代? n=`wc -l 1.txt`
写和用户交互的脚本时,变量也是必不可少的? read -p "Input a number: " n; echo $n?
如果没写这个n,可以直接使用$REPLY
内置变量 $0, $1, $2,$#? ? $0表示脚本本身,$1 第一个参数,$2 第二个参数,$#表示参数的个数;
数学运算a=1;b=2; c=$(($a+$b))? 或者 c=$[$a+$b]


变量只在当前shell下生效,子shell不会生效;
要想子shell也生效,使用export file 声明变量;
用户交互的变量:
[root@localhost shell]# cat 2.sh?
#!/bin/bash
#与用户交互的变量
read -p "请输入一个数字:" num
echo $num
[root@localhost shell]# sh 2.sh?
请输入一个数字:333
333


参数的变量:
[root@localhost shell]# cat 3.sh?
#!/bin/bash
#关于参数的变量
echo "\$1=$1"
echo "\$

首页 上一页 1 2 3 下一页 尾页 1/3/3
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇设计模式之单例模式 下一篇Java 8 Lambda实现原理分析

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容: