I see this all over the place in the Perl community, where a function name and then a number is listed. Example:
and also from perlopentut
I've always been just ignoring the numbers because the function name part of it seems pretty self-explanatory, but what do the numbers mean?
-------------
Kirsle.net | Kirsle's Programs and Projects
Code:
getcwd
my $cwd = getcwd();
Returns the current working directory.
Re-implements the [COLOR=red]getcwd(3)[/color] ([COLOR=red]or getwd(3)[/color]) functions in Perl.
and also from perlopentut
Code:
SEE ALSO ^
The open and sysopen functions in [COLOR=red]perlfunc(1)[/color]; the system [COLOR=red]open(2), dup(2), fopen(3), and fdopen(3)[/color] manpages; the POSIX documentation.
I've always been just ignoring the numbers because the function name part of it seems pretty self-explanatory, but what do the numbers mean?
-------------
Kirsle.net | Kirsle's Programs and Projects