八、read 读取控制台输入
1、基本语法
选项:
参数
2、案例实操
(1)提示7秒内,读取控制台输入的名称
[root@rich datas]# touch read.sh
[root@rich datas]# vim read.sh
#!/bin/bash
read -t 7 -p "input your name " NAME
echo $NAME
执行脚本:
[root@rich datas]# bash read.sh
input your name
[root@rich datas]# dfads
bash: dfads: 未找到命令...
[root@rich datas]# bash read.sh
input your name wenmin
wenmin
九、函数
1、系统函数
1.1、basename 基本语法
(功能描述: basename 命令会删除掉所有的前缀,包括最后一个(‘ / ’)字符,然后将字符串显示出来)
选项:
suffix 为后缀,如果 suffix 被指定了,basename 会将pathname 或 string 中的 suffix 去掉
1.2、案例实操
(1)截取该 路径的文件名称
[root@rich datas]# basename /home/wenmin/datas/batch.sh
batch.sh
[root@rich datas]# basename /home/wenmin/datas/batch.sh .sh
batch
1.3、 dirname基本语法
1.4、案例实操
(1)获取 batch.sh 文件的路径
[root@rich datas]# dirname /home/wenmin/datas/batch.sh
/home/wenmin/datas
2、自定义函数
2.1 基本语法
[ function ] funname[()]
{
Action;
[return int;]
}
funname
2.2 经验技巧
2.3 案例实操
(1)计算两个输入参数的和
[root@rich datas]# touch sum.sh
[root@rich datas]# vim sum.sh
#!/bin/bash
function sum()
{
s=0;
s=$[$1+$2]
echo $s
}
read -p "input your parameter1:" p1
read -p "input your parameter2:" p2
sum $p1 $p2
执行 sum.sh 脚本
[root@rich datas]# bash sum.sh
input your parameter1:1
input your parameter2:2
3