在Ubuntu Linux中,grepping --help
命令的输出按预期工作:
# pytest --help | grep python
expression. An expression is a python evaluatable
--pyargs try to interpret all arguments as python
# ... list continues
但在macOS中,这种情况仍然存在。
如果我运行pytest --help > output.txt
然后cat output.txt | grep python
,它会按预期运行。
在macOS中我可以做什么来在单个命令中搜索--help
的输出?