Why do programs in Unix-like environments have numbers after their name? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T19:34:08Zhttp://stackoverflow.com/feeds/question/587676http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/587676/why-do-programs-in-unix-like-environments-have-numbers-after-their-name12Why do programs in Unix-like environments have numbers after their name?Abdullah Jibaly2009-02-25T20:19:56Z2009-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#58768229Answer by Paul Tomblin for Why do programs in Unix-like environments have numbers after their name?Paul Tomblin2009-02-25T20:21:13Z2009-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#58768818Answer by eduffy for Why do programs in Unix-like environments have numbers after their name?eduffy2009-02-25T20:22:20Z2009-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#5880810Answer by SumoRunner for Why do programs in Unix-like environments have numbers after their name?SumoRunner2009-02-25T21:54:46Z2009-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>