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.
如何在 bash 的 if 语句中调用 date +%a 命令?我搜索了谷歌,但找不到任何东西。我正在尝试创建一个脚本,以便如果 date +%a 显示 Mon 我会回显备份您的文件!
到目前为止,我已经尝试过:
if [date +%a==Mon] then echo back fi
在其他变体中。
我错过了什么?
如果这是一个愚蠢的问题,我提前道歉,我是 Bash 的新手。
使用命令替换:
if [[ $(date +%a) == Mon ]] ; then echo Backup time fi