5 Tricks to Get Instant Command Line Help in the Mac OS X Terminal

Command Action / Results
man (command) Display the manual page for (command). eg: man lsof
whatis (command) Display a one line brief summary of specified command. eg: whatis lsof
(command) --help Display command usage information including available flags and proper syntax. eg: lsof –help
apropos (string) Searches the whatis database for (string), helpful in finding commands. eg: apropos ssh
(command)+tab key Begin typing a command, and hit the tab key to autocomplete, or to list available commands that start with the typed prefix.

相关文章:

  • 2021-09-25
  • 2021-08-07
  • 2021-08-13
  • 2021-11-10
  • 2021-11-17
  • 2021-07-12
  • 2021-11-01
猜你喜欢
  • 2021-05-18
  • 2021-06-11
  • 2022-12-23
  • 2022-12-23
  • 2022-01-21
  • 2021-12-18
相关资源
相似解决方案