Why do programs in Unix-like environments have numbers after their name? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T19:34:08Z http://stackoverflow.com/feeds/question/587676 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/587676/why-do-programs-in-unix-like-environments-have-numbers-after-their-name 12 Why do programs in Unix-like environments have numbers after their name? Abdullah Jibaly 2009-02-25T20:19:56Z 2009-02-25T21:54:46Z <p>For example, when I run <code>man ioctl</code> the page says <code>IOCTL(2)</code> at the top. What does that mean? Is there an <code>IOCTL(1)</code>? And how does one navigate between these?</p> http://stackoverflow.com/questions/587676/why-do-programs-in-unix-like-environments-have-numbers-after-their-name/587682#587682 29 Answer by Paul Tomblin for Why do programs in Unix-like environments have numbers after their name? Paul Tomblin 2009-02-25T20:21:13Z 2009-02-25T20:48:27Z <p>It's the man page section. From memory, section 1 is user programs, 2 is system calls, and 3 is standard C library calls, and 5 is file formats.</p> <p>Wikipedia has the full explanation <a href="http://en.wikipedia.org/wiki/Man%5Fpage" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/587676/why-do-programs-in-unix-like-environments-have-numbers-after-their-name/587688#587688 18 Answer by eduffy for Why do programs in Unix-like environments have numbers after their name? eduffy 2009-02-25T20:22:20Z 2009-02-25T20:31:19Z <p>That's the man page section number. For example</p> <pre><code> man printf </code></pre> <p>(should) Give you section 1, <code>printf</code> the bash command, while</p> <pre><code> man 3 printf </code></pre> <p>gives you the C function <code>printf</code>.</p> http://stackoverflow.com/questions/587676/why-do-programs-in-unix-like-environments-have-numbers-after-their-name/588081#588081 0 Answer by SumoRunner for Why do programs in Unix-like environments have numbers after their name? SumoRunner 2009-02-25T21:54:46Z 2009-02-25T21:54:46Z <p>Here's a list of what the man page sections refer to.</p> <p><a href="http://www.december.com/unix/ref/mansec.html" rel="nofollow">http://www.december.com/unix/ref/mansec.html</a></p>