Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有显示 linux 命令特定选项的技巧?比如我想知道一些关于 tar-z选项的细节,我试试这个:tar --help | grep '-z'但什么也没显示。
-z
tar --help | grep '-z'
那么是否可以只显示有关特定命令选项的详细信息?
如果你能帮助我,请先欣赏。
专门针对tar --help | grep '-z'不工作的问题,这样做:
tar --help | grep -- '-z'
如果没有--,grep则-z作为选项而不是参数。
--
grep