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 在日志文件的时间戳之后检索所有日志。
grep -A 100 "2013/02/13 19*" log.out > newfile.txt
有没有办法在命令行对其进行格式化,以便文本文件的新行从特定文本开始?例如,我希望“信息”从新行开始。
使用 sed 从 grep 的输出中删除 \r 和 \n 字符,然后使用 sed 将“特定文本”替换为“特定文本\n”字符。我想它应该可以工作。