bash中的变量
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bash中的变量相关的知识,希望对你有一定的参考价值。
bash中的变量的种类:
根据变量的生效范围等标准:
本地变量:生效范围为当前shell进程;对当前shell之外的其它shll进程,包括当前shell的子shell进程均无效;
环境变量:生效范围为当前shell进程及其子进程; declare -x name=Obama
局部变量:生效范围为当前shell进程中某代码片断(通常指函数);
位置变量:$1-$9,...来表示,用于让脚本在脚本代码中调用通过命令行传递给它的参数;
特殊变量:$?,$0,$*,[email protected],$#
$? 前一命令的退出状态
$0 Shell脚本的名称
$* 所有的位置参数
[email protected] 除了双引号引用的情况,含义与$*相同
$# 位置参数的个数
示例
[[email protected] shell]# vim test.sh #!/bin/bash echo $0 echo $2 echo "\$*: $*" echo "\[email protected]: [email protected]" echo "\$#: $#" [[email protected] shell]# sh test.sh tom jerry super test.sh jerry $*: tom jerry super [email protected]: tom jerry super $#: 3 |
学习参考自:
马哥Linux
UNIX.shell范例精解
本文出自 “赵东伟的博客” 博客,请务必保留此出处http://zhaodongwei.blog.51cto.com/4233742/1878413
以上是关于bash中的变量的主要内容,如果未能解决你的问题,请参考以下文章