一、变量
变量是一个容器,里面能放不同的值。
要点知识:
PATH,HOME,PWD,LOGNAME这些都是变量。
例子:
[[email protected] ~]# echo a+b a+b [[email protected] ~]# echo $a+$b 3+4 [[email protected] ~]# echo $a3$bc [[email protected] ~]# echo $a3$b 4 [[email protected] ~]# echo $a"3"$b 334
变量的累加:
[[email protected] ~]# echo a+b a+b [[email protected] ~]# echo $a+$b 3+4 [[email protected] ~]# echo $a3$bc [[email protected] ~]# echo $a3$b 4 [[email protected] ~]# echo $a"3"$b 334
删除一个变量:
[[email protected] ~]# echo $a 3 [[email protected] ~]# unset a [[email protected] ~]# echo $a
在一个终端下定义的变量在另一个终端下不能使用,如果要使用,必须将变量放在环境变量的配置文件中定义。如果希望变量在子shell中可以使用,可以export一下:
[[email protected] ~]# a=3 [[email protected] ~]# echo $a 3 [[email protected] ~]# bash [[email protected] ~]# echo $a [[email protected] ~]# a=4 [[email protected] ~]# echo $a 4 [[email protected] ~]# export a [[email protected] ~]# bash [[email protected] ~]# echo $a 4
二、环境变量配置文件
要点:
如果我们vim ~/.bash_profile,我们会发现:
# .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi # User specific environment and startup programs PATH=$PATH:$HOME/bin export PATH
原来.bash_profile文件会包含.bashrc。
PS1:
实验:
[[email protected] yum.repos.d]# PS1=‘\[email protected]\h \w‘ [email protected] /etc/yum.repos.d
时间: 2024-10-12 06:21:16