Unix shell,根据日期对文件执行命令

时间:2017-11-23 12:08:18

标签: linux sh

我有一个应用程序服务器,它使用以下格式生成每日日志:

access_log.{Y-m-d}

所以我想以这样的方式执行命令:

tail -f access_log.{+%Y-%m-%d}

有没有办法在不创建变量的情况下单行编写?

1 个答案:

答案 0 :(得分:0)

找到here

tail -f "access_log.$(date '+%Y-%m-%d')"