执行rhc tail -a myApp
时,我想过滤掉所有行:GET / 200
我试过
rhc tail -a myApp | grep -V GET
但这似乎不起作用。
答案 0 :(得分: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输出的版本输出到屏幕上吗?