0

我在下面的日志文件中有内容:

Aug 02 22:01:18.0937 CDT Thread-4-610399 java.lang.IllegalStateException: perfdb_connectstring was not found in the supplied property file(s).

我希望java.lang.IllegalStateException: perfdb_connectstring was not found使用 grep 命令将输出放在提供的属性文件中。

请尽可能尽快回复。

4

1 回答 1

0

你真的需要使用'grep'吗?如果日志文件总是有这种格式,也许你应该使用 'cut'

cut -d" " -f6- file.log

它将准确地输出您想要标准输出的内容:

java.lang.IllegalStateException: perfdb_connectstring was not found in the supplied property file(s).
于 2012-08-07T14:39:10.590 回答