gpt4 book ai didi

linux:在每个输出行的末尾打印字符串

转载 作者:太空宇宙 更新时间:2023-11-04 05:10:13 24 4
gpt4 key购买 nike

我执行下面的脚本

grep -i 'Exception' Exceptions.log | 
sort |
uniq -c |
sort -n

并得到以下结果(每次结果集都会不同)

6 java.lang.NullPointerException
48 java.sql.SQLException
64 excep.NotFoundException
671 exception.ParseErrorException
690 Exception

实际上我想在每行的开头或结尾打印文件名

6 java.lang.NullPointerException Exceptions
48 java.sql.SQLException Exceptions
64 excep.NotFoundException Exceptions
671 exception.ParseErrorException Exceptions
690 Exception Exceptions

或者

Exceptions 6 java.lang.NullPointerException
Exceptions 48 java.sql.SQLException
Exceptions 64 excep.NotFoundException
Exceptions 671 exception.ParseErrorException
Exceptions 690 Exception

请帮助我实现这个目标。

最佳答案

你可以使用-H选项例如grep -H <SEARCH>

   -H, --with-filename
Print the file name for each match. This is the default when
there is more than one file to search.

检查man更多选项页面

关于linux:在每个输出行的末尾打印字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56326752/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com