1 | 2 | 3 | 4 | 5 | Current Level: 6 | 7 | 8
man
to Read Manual Pages⚠️ Windows Users: If you’re using Git Bash on Windows, the
man
command is not available. You can skip this lesson and use--help
instead (covered in the previous lesson). For example, tryls --help
to see the manual for thels
command.
Open a manual page In the terminal, type:
man ls
This shows detailed information about the ls
command and its options.
Navigate the manual
/word
to search.Exit the manual Press:
q
to quit and return to the shell.
man
works on macOS and most Linux systems.--help
instead.You can also search online. Try:
unix man page ls
to find the same info in a web browser.