Talk is cheap,show me the code!
{ job;/sbin/halt -p; }
关于shell脚本中提醒用法及参数输入
if [[ $# -ne 1 ]] then
echo -e "Usage:./$0 arguments-list"
exit 1
fi
把shell多行注释掉,有如下方法:
第一种:基于Here Documents和:实现如果被注释的内容中有反引号会报错- :<<BLOCK
- ....被注释的多行内容
- BLOCK
解决注释中有反引号的问题
- :<< 'BLOCK
- ....被注释的多行内容
- BLOCK'
或者干脆只留单引号
- :<< '
- ....被注释的多行内容
- '
第二种:当注释内容中有括号时报语法错误错,但里面有反引号,引号时没有问题
- :||{
- ....被注释的多行内容
- }
第三种:会对注释内容中的括号引号等语法错误报错
- if false ; then
- ....被注释的多行内容
- fi
---------------------------------- 华丽的分割线 -------------------------------------here 文档与重定向输入 here 文档 为需要输入数据的程序(如 mail sor 或cat) 接收内置文本,直至用户自定义的休止符。$ cat << FINISH> Hello there $LOGNAME> The time is `data`> If you want to know who is god, type "echo \$LOGNAME" > FINISHhere 文档常被shell脚本用来生成 菜单 或 被用来 多行注释用 here 文档 和 case 命令生成菜单# file ./profileecho "select a terminal type: "cat << ENTER 1) vt 120 2) wyse50 3) sunENTERread choicecase "$choice" in1) TERM=vt120 export TERM ;;2) TERM=wyse50 export TERM ;;3) TERM=sun export TERM ;;esacecho "TERM is $TERM"
posted on 2013-11-03 10:21 阅读( ...) 评论( ...)