标签: linux sh
我有一个应用程序服务器,它使用以下格式生成每日日志:
access_log.{Y-m-d}
所以我想以这样的方式执行命令:
tail -f access_log.{+%Y-%m-%d}
有没有办法在不创建变量的情况下单行编写?
答案 0 :(得分:0)
找到here
tail -f "access_log.$(date '+%Y-%m-%d')"