0

做的时候rhc tail -a myApp,我想过滤掉所有的行:GET / 200

我试过了

rhc tail -a myApp | grep -V GET

但这似乎不起作用。

4

1 回答 1

0

我认为你需要一个小写的 v,大写的 V 似乎是版本,至少在我的 mac 上......

 -V, --version
             Display version information and exit.

 -v, --invert-match
             Selected lines are those not matching any of the specified patterns.

您只是将 grep 输出的版本显示到屏幕上吗?

于 2014-05-30T20:29:06.203 回答