summaryrefslogtreecommitdiff
path: root/pod/perlfaq8.pod
diff options
context:
space:
mode:
authorMark-Jason Dominus <mjd@plover.com>2001-11-08 13:33:18 +0000
committerAbhijit Menon-Sen <ams@wiw.org>2001-11-08 12:49:28 +0000
commita93751fa40b15f424f91bba70d1533c6b4024e42 (patch)
tree1442611ac895495685bfc621051cf70dcb9afdab /pod/perlfaq8.pod
parenteb649f8332a68e044311e1ac390a40e67a4d5e90 (diff)
downloadperl-a93751fa40b15f424f91bba70d1533c6b4024e42.tar.gz
replace http://www.perl.com/CPAN/ with http://www.cpan.org/
Message-Id: <20011108133318.1786.qmail@plover.com> p4raw-id: //depot/perl@12897
Diffstat (limited to 'pod/perlfaq8.pod')
-rw-r--r--pod/perlfaq8.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlfaq8.pod b/pod/perlfaq8.pod
index 19be3be74f..c093b77cc7 100644
--- a/pod/perlfaq8.pod
+++ b/pod/perlfaq8.pod
@@ -635,7 +635,7 @@ STDOUT).
Note that you I<must> use Bourne shell (sh(1)) redirection syntax in
backticks, not csh(1)! Details on why Perl's system() and backtick
and pipe opens all use the Bourne shell are in
-http://www.perl.com/CPAN/doc/FMTEYEWTK/versus/csh.whynot .
+http://www.cpan.org/doc/FMTEYEWTK/versus/csh.whynot .
To capture a command's STDERR and STDOUT together:
$output = `cmd 2>&1`; # either with backticks
@@ -811,7 +811,7 @@ causes many inefficiencies.
=head2 Can I use perl to run a telnet or ftp session?
Try the Net::FTP, TCP::Client, and Net::Telnet modules (available from
-CPAN). http://www.perl.com/CPAN/scripts/netstuff/telnet.emul.shar
+CPAN). http://www.cpan.org/scripts/netstuff/telnet.emul.shar
will also help for emulating the telnet protocol, but Net::Telnet is
quite probably easier to use..
@@ -953,7 +953,7 @@ in L<perlfunc/fork>.
=head2 How do I use an SQL database?
There are a number of excellent interfaces to SQL databases. See the
-DBD::* modules available from http://www.perl.com/CPAN/modules/DBD .
+DBD::* modules available from http://www.cpan.org/modules/DBD .
A lot of information on this can be found at
http://www.symbolstone.org/technology/perl/DBI/