Chinaunix首页 | 论坛 | 博客
  • 博客访问: 8484
  • 博文数量: 1
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 24
  • 用 户 组: 普通用户
  • 注册时间: 2014-11-15 16:36
个人简介

show me your code

文章分类

全部博文(1)

文章存档

2014年(1)

分类: 服务器与存储

2014-11-18 16:59:28

Shell

标签:program


直接在脚本中调用另一个脚本,其将运行在一个新的shell中,所以需要用source(.)命令调用库
调用库函数使用单引号 

函数——『小型脚本』

在使用之前定义

function name{
    函数名在$0中定义,$#参数数目,其它$1 $2 ...
    local 变量名
    commands
    默认退出状态 / return [0-255] / 使用输出赋值变量的做法
} 

变量

数组(1,2,3)

表达式

expr : 计算
test : 比较
[] = test
((高级数学公式))
[[高级字符串比较]] 

控制结构

if command
then
    commands
elif command
then
    commands
else
    commands
fi

------------------------

case variable in
pattern1 | pattern2) commmands;;
pattern3) commands;;
*) commands;;
esac

-------------------------

for var in list
do
    commands
done

-----------------------------

for((variable assignment; condition; iteration process))
do
    commands
done

---------------------------

while commands
do
    commands
done

------------------------------

until commands
do
    commands
done
阅读(988) | 评论(0) | 转发(1) |
0

上一篇:没有了

下一篇:没有了

给主人留下些什么吧!~~