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.
我想 grep 八月或九月的所有日期(mm/dd/yyyy带有前导零的日期格式)。
mm/dd/yyyy
我试过:
grep '0\(8\|9\)/[0-9][0-9]/2012'
但命令提示符输出:
该系统找不到指定的路径。
grep想要一个正则表达式和一个文件名。错误消息看起来像您以某种方式传递了无效的文件名。假设包含日志条目的文件名为log,试试这个;
grep
log
grep '0[89]/[0-9][0-9]/2012' log
(我还稍微调整了你的正则表达式。)