在一对双引号内使用单引号,则单引号会被剥夺引号的语义变成普通字符。同样地,在一对单引号内使用双引号,双引号也会被剥夺引号的语义变成普通字符。
双引号会将 dollar 符 $ 和反引号 ** 分别按 bash 中的特殊含义处理,即遇到 $ 就开始找变量名,遇到
就开始找下一个反引号。
而在单引号内使用的 dollar 符 $ 和反引号 ` 会按普通字符处理。
lsz@debian11:~$ num=1000
lsz@debian11:~$ echo "$num `echo ee`"
1000 ee
lsz@debian11:~$ echo '$num `echo ee`'
$num `echo ee`
文字表达很复杂,直接上伪代码。
登入 shell 是用户登入时创建的 shell。配置文件的执行顺序是:
execute /etc/profile
IF ~/.bash_profile exist THEN
execute ~/.bash_profile
ELSE
IF ~/.bash_login exist THEN
execute ~/.bash_login
ELSE
IF ~/.profile exist THEN
execute ~/.profile
END IF
END IF
END IF
用户登入以后会有一个 shell,如果此时在命令行执行 bash (在这个 shell 中创建一个新的子 shell),那么这个新的子 shell 就是 非登入 shell 。子 shell 退出后会回到父 shell。
执行顺序:
IF ~/.bashrc exists THEN
execute ~/.bashrc
END IF
执行顺序:
IF ~/.bash_logout exists THEN
execute ~/.bash_logout
END IF
需要注意,在 RH 系发行版中 ~/.bashrc 会主动调用 /etc/bashrc:
# cat ~/.bashrc
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
Bash 的全局快捷键定义放在 /etc/inputrc 中。
用户可以把自己的快捷键定义放在 ~/.inputrc 中。同时也要在自定义文件中引用全局快捷键配置来避免遗漏。
$include /etc/inpurtc
...
具体写法可以查看文档: https://www.gnu.org/software/bash/manual/html_node/Readline-Init-File.html