Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在终端中,我输入以下代码:
~$ a=1 ~$ ${a}
它显示:1:找不到命令
但是当我回显变量时,它正确显示 1。
告诉外壳:
a=1 $a
使外壳程序1在其路径中查找具有名称的程序。
1
告诉它
a=1 echo $a
告诉 shell 寻找程序echo,然后接收您的第一个参数 ( 1) 并将其打印到stdout.
echo
stdout