``命令符号 与 $()符号
更新:HHH   时间:2023-1-7


结论:``命令符号  ==  $() 

程序:

#!/bin/bash


echo `pwd`

echo -e "\n"

echo "$(pwd)"


运行结果:


/mnt/hgfs/1725/shell


/mnt/hgfs/1725/shell



返回系统运维教程...