3

Possible Duplicate:
Why do programs in Unix-like environments have numbers after their name?

GREP(1)     

I see this when i man grep, what does the 1 mean?

Community
  • 1
  • 1
Oh Chin Boon
  • 23,028
  • 51
  • 143
  • 215
  • 1
    http://stackoverflow.com/questions/587676/why-do-programs-in-unix-like-environments-have-numbers-after-their-name – Matt Ball Nov 28 '11 at 03:53

1 Answers1

10

grep(1) means grep is a command line. There are 8 categories of man pages:

  1. General Commands
  2. System Calls
  3. Subroutines
  4. Special Files
  5. File Formats
  6. Games
  7. Macros and Conventions
  8. Maintenence Commands

thta's the number you see in man

Dmitry B.
  • 9,107
  • 3
  • 43
  • 64