the root of the subtree to delete, or a reference to
a list of roots. All of the files and directories
below each root, as well as the roots themselves,
-will be deleted. For the moment, C<rmtree> expects
-Unix file specification syntax.
+will be deleted.
=item *
=head1 REVISION
-This document was last revised 08-Mar-1995, for perl 5.001
+This document was last revised 25-Aug-1995, for perl 5.002
=cut
$root =~ s#/$##;
if (-d $root) {
opendir(D,$root);
- $root =~ s#\.dir$## if $Is_VMS;
+ ($root = VMS::Filespec::unixify($root)) =~ s#\.dir$## if $Is_VMS;
@files = map("$root/$_", grep $_!~/^\.{1,2}$/, readdir(D));
closedir(D);
$count += rmtree(\@files,$verbose,$safe);
package Sys::Hostname;
use Carp;
+use Config;
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(hostname);
sub hostname {
- # method 1 - we already know it
- return $host if defined $host;
+ # method 1 - we already know it
+ return $host if defined $host;
+
+ if ($Config{'osname'} eq 'VMS') {
+
+ # method 2 - no sockets ==> return DECnet node name
+ if (!$Config{'d_has_sockets'}) { return $host = $ENV{'SYS$NODE'}; }
+
+ # method 3 - has someone else done the job already? It's common for the
+ # TCP/IP stack to advertise the hostname via a logical name. (Are
+ # there any other logicals which TCP/IP stacks use for the host name?)
+ $host = $ENV{'ARPANET_HOST_NAME'} || $ENV{'INTERNET_HOST_NAME'} ||
+ $ENV{'MULTINET_HOST_NAME'} || $ENV{'UCX$INET_HOST'} ||
+ $ENV{'TCPWARE_DOMAINNAME'} || $ENV{'NEWS_ADDRESS'};
+ return $host if $host;
+
+ # method 4 - does hostname happen to work?
+ my($rslt) = `hostname`;
+ if ($rslt !~ /IVVERB/) { ($host) = $rslt =~ /^(\S+)/; }
+ return $host if $host;
+
+ # rats!
+ Carp::croak "Cannot get host name of local machine";
+
+ }
+ else { # Unix
# method 2 - syscall is preferred since it avoids tainting problems
eval {
# remove garbage
$host =~ tr/\0\r\n//d;
$host;
+ }
}
1;
$subname = "main::" . $subname unless $subname =~ /'|::/;
$subname = "main" . $subname if substr($subname,0,1)eq "'";
$subname = "main" . $subname if substr($subname,0,2)eq "::";
- ($file,$subrange) = split(/:/,$sub{$subname});
+ # VMS filespecs may (usually do) contain ':', so don't use split
+ ($file,$subrange) = $sub{$subname} =~ /(.*):(.*)/;
if ($file ne $filename) {
*dbline = "::_<$file";
$max = $#dbline;
unless $subname =~ /'|::/;
$subname = "main" . $subname if substr($subname,0,1) eq "'";
$subname = "main" . $subname if substr($subname,0,2) eq "::";
- ($filename,$i) = split(/:/, $sub{$subname});
+ # VMS filespecs may (usually do) contain ':', so don't use split
+ ($filename,$i) = $sub{$subname} =~ /(.*):(.*)/;
$i += 0;
if ($i) {
*dbline = "::_<$filename";