## 1.变量的定义
#### 定义本身
变量就是内存一片区域的地址
#### 变量存在的意义
#### 命令无法操作一直变化的目标
用一串固定的字符来表示不固定的目标可以解决此问题
## 2.shell脚本中变量的定义方法
####当前shell
a=1
echo $a
#### 环境级别
export a=1
sh 1.sh
在环境关闭后变量失效
#### 用户级别
vim ~/.bash_profile
export a=1
source ~/.bash_profile 生效当前更改信息
#### 系统级别
vim /etc/profile.d/westos.sh
export a=1
## 变量名称
#### 变量名称可包含的字符
字母
下划线_
数字
#### 变量名称定义规则
不能用数字开头
#### 建议:
变量名称短全用大写字符
变量名称长用_区分子类
WESTOS
Westos_Linux
westoS_Linux
####3.变量的转译
#1)转译
\ #转译单个字符
"" #弱引用,批量转译个数字符 不能转译"\ " "" "$" "!"
'' #强引用
#2)声明
a=1
echo $ab
echo ${a}b
#3)变量的数组
a=(1 2 3 4 5)
a$[a[@]:起始元素id:元素个数]
echo ${a[0]} ##数组中第一个元素
echo ${a[-1]} ##数组中最后一个元素
echo ${a[*]} ##数组中所有元素
="12345"
echo ${a[@]} ##数组中所有元素
="1""2""3""4""5"
echo ${a[@]:0:3} ##数组中第1-3个元素
echo ${a[@]:2:3} ##数组中第3-5个元素
echo ${#a[@]} ##数组中元素的个数
unset a[n] ##删除数组中的第n+1个元素
unset a ##删除a这个数组
####4.Linux中命令的别名设定
alias xie='vim' ##临时设定
vim ~/.bashrc
alias xie='vim' ##只针对与用户生效
vim /etc/bashrc ##针对系统所有用户生效
alias xie='vim'
unalias xie ##删除当前环境中的alias
####5.用户环境变量的更改
设定方式:
~/.bash_profile
export PATH=$PATH:/mnt
/etc/bash_profile
export PATH=$PATH:/mnt
或
vim ~/.bash_profile
PATH=$PATH:$HOME/bin /mnt
指定在执行命令时/mnt中的脚本可以用相对路径调用
#####6. 变量定义方式
#1)直接利用命令执行结果
$()| ##优先执行
TEST=hostname TEST=$(hostname)
echo $TEST
#2)脚本中的传参
非交互模式:
$0 is /mnt/test.sh <!脚本本身>
$1 is westos <!脚本后所输入的第一串字符>
$2 is linux
$3 is redhat
$* is westos linux redhat <!脚本后所输入的所有字符"westos linux redhat">
$@ is westos linux redhat <!脚本后所输入的所有字符'westos' 'linux' 'redhat'>
$# is
3 <!脚本后所输入的字符串个数>
echo '$0' is $0
echo '$1' is $1
echo '$2' is $2
echo '$3' is $3
echo '$*' is $*
echo '$@' is $@
echo '$#' is $#
交互模式传参:
read WESTOS ##对westos赋值
read p "please input word:" ##输出提示语
s ##隐藏输入内容
read -p "Please input word:" -s WORD
echo " "
echo $WORD
练习
#7.脚本函数
定义:
程序的别名
设定方式:
WORD()
{
action1
action2
}
WORD
在脚本中就代表action1 action2这两个动作
脚本中的脚本
可以使脚本动作循环执行
例
WORD()
{
read -p "Please input word:" -s WORD
echo " "
echo $WORD
WORD
}
WORD
练习
练习