summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-04-26 09:53:35 -0600
committerKarl Williamson <public@khwilliamson.com>2011-05-18 11:15:04 -0600
commitd39ff17b752685c7cac671e9b3c573dd274db806 (patch)
treeb0c73d8899da8b8096e301e8939e8bf7e4082daa
parent75cdcc9395f353d1c35bf440dd6f0492476b329b (diff)
downloadperl-d39ff17b752685c7cac671e9b3c573dd274db806.tar.gz
perlfaq8: Add links to man pages
-rw-r--r--pod/perlfaq8.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlfaq8.pod b/pod/perlfaq8.pod
index b64e8d038b..c3b179d4be 100644
--- a/pod/perlfaq8.pod
+++ b/pod/perlfaq8.pod
@@ -374,7 +374,7 @@ try to guess passwords, but don't (can't) guarantee quick success.
If you're worried about users selecting bad passwords, you should
proactively check when they try to change their password (by modifying
-passwd(1), for example).
+L<passwd(1)>, for example).
=head2 How do I start a process in the background?
@@ -482,8 +482,8 @@ If perl was installed correctly and your shadow library was written
properly, the C<getpw*()> functions described in L<perlfunc> should in
theory provide (read-only) access to entries in the shadow password
file. To change the file, make a new shadow password file (the format
-varies from system to system--see L<passwd> for specifics) and use
-C<pwd_mkdb(8)> to install it (see L<pwd_mkdb> for more details).
+varies from system to system--see L<passwd(1)> for specifics) and use
+C<pwd_mkdb(8)> to install it (see L<pwd_mkdb(8)> for more details).
=head2 How do I set the time and date?
@@ -986,7 +986,7 @@ module for other solutions.
=item *
-Open /dev/tty and use the TIOCNOTTY ioctl on it. See L<tty>
+Open /dev/tty and use the TIOCNOTTY ioctl on it. See L<tty(1)>
for details. Or better yet, you can just use the C<POSIX::setsid()>
function, so you don't have to worry about process groups.