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.
我喜欢从日志文件中获取今天的条目,这样我就可以每天将其发送到我的电子邮件中。这是我的命令,它不起作用请帮助。
cat /var/log/fail2ban.log | grep "date +%Y\-%m\-%d"
我会把我的评论作为答案。
你要这个:
cat /var/log/fail2ban.log | grep `date +%Y-%m-%d`
两个反引号 ` 之间的文本由您的 shell 执行,并被命令的输出替换。