您的位置:首页 > 运维架构 > Shell

shell自学笔记2

2015-10-13 21:46 543 查看
shell编程中的变量

1.SECONDS     记录脚本从开始执行到结束所耗费的时间

     sleep 2   表示该脚本进程休眠2秒

2.TMOUT    用于设置shell的过期时间 ,放在脚本中可规定脚本的执行时间(使用方法 TMOUNT=3)

3.用select结构时,提示符为#?,可通过设置PS3的值来自定义,例:

[root@slave1 test_shell]# ./test_select.sh
what is your color?
1) red
2) white
3) black
4) yellow
<strong><span style="color:#ff0000;">#?</span></strong> 1
the $REPLY is 1
your color is red


修改后的效果为:

[root@slave1 test_shell]# PS3="please input:"
[root@slave1 test_shell]# export PS3
[root@slave1 test_shell]# ./test_select.sh
what is your color?
1) red
2) white
3) black
4) yellow
<span style="color:#ff0000;"><strong>please input</strong>:</span>2
the $REPLY is 2
your color is white


二 字符串处理

1.显示字符串的长度

echo  ${#var}

或  expr   length "$var" (引号不能少)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: