Unix What Does the Number in Parenthesis Mean in Manpages
If you read through Unix like documentation you come across this notation logrotate(8)
or find(3)
.
What does the (8)
mean?
The number represents the section assigned to a given man page for a command. The different numbers are:
- General commands
- System calls
- C library functions
- Special files (usually devices, those found in /dev) and drivers
- File formats and conventions
- Games and screensavers
- Miscellanea
- System administration commands and daemons
You can read more here: Unix Programmer's Manual