首页 > 代码库 > bash中的变量

bash中的变量

bash中的变量的种类:

根据变量的生效范围等标准:

    本地变量:生效范围为当前shell进程;对当前shell之外的其它shll进程,包括当前shell的子shell进程均无效;

    环境变量:生效范围为当前shell进程及其子进程; declare -x name=Obama

    局部变量:生效范围为当前shell进程中某代码片断(通常指函数);

    位置变量:$1-$9,...来表示,用于让脚本在脚本代码中调用通过命令行传递给它的参数;

    特殊变量:$?,$0,$*,$@,$#

        $? 前一命令的退出状态

        $0 Shell脚本的名称

        $* 所有的位置参数

        $@ 除了双引号引用的情况,含义与$*相同

        $# 位置参数的个数

示例

[root@c7 shell]# vim test.sh

#!/bin/bash

echo $0

echo $2

echo "\$*: $*"

echo "\$@: $@"

echo "\$#: $#"

[root@c7 shell]# sh test.sh tom jerry super

test.sh

jerry

$*: tom jerry super

$@: tom jerry super

$#: 3


学习参考自:

马哥Linux

UNIX.shell范例精解

本文出自 “赵东伟的博客” 博客,请务必保留此出处http://zhaodongwei.blog.51cto.com/4233742/1878413

bash中的变量