CentOS 是一个基于 Red Hat Enterprise Linux (RHEL) 的开源 Linux 发行版
current_date=`date`
echo "Today is $current_date"
在这个例子中,date
命令的输出会被替换到 current_date
变量中。
$()
:
$()
也是一种命令替换的方法,与反引号类似,但具有更好的可读性和嵌套能力。例如:current_date=$(date)
echo "Today is $current_date"
这个例子与前一个例子的功能相同,但使用 $()
语法更清晰,更容易阅读。此外,如果你需要在命令替换中嵌套另一个命令替换,$()
会更方便:
echo "The current year is $(date +%Y)"
filename="file.txt"
echo "The first character of the filename is ${filename:0:1}"
这个例子中,我们使用了 ${filename:0:1}
来获取变量 filename
的第一个字符。
grep -oE '\w+' <(tr '[:lower:]' '[:upper:]' < file.txt)
这个例子中,我们使用了一个子shell (tr '[:lower:]' '[:upper:]' < file.txt)
来将文件中的所有小写字母转换为大写字母,然后使用 grep
命令提取单词。
总之,虽然 CentOS 中的反引号在某些情况下仍然有用,但 $()
语法通常更推荐使用,因为它具有更好的可读性和灵活性。此外,还有许多其他 shell 特性可以帮助你编写更强大的脚本和命令。