學習筆記——shell腳本編輯命令行(命令替換)

命令行替換 (1)反引號字符(`) 示例 test=`date` #!/bin/bash test=`date` echo "The date and time are: " $test (2)$()格式 示例 test=$(date) #!/bin/bash test=$(date) echo "The date and time are: "$test 應用 在腳本中經過命令替換得到當前日期
相關文章
相關標籤/搜索