mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
d13363af60
PR: 81
19 lines
268 B
Perl
19 lines
268 B
Perl
#!/usr/local/bin/perl
|
|
|
|
if ($#ARGV < 0) {
|
|
die "dirname.pl: too few arguments\n";
|
|
} elsif ($#ARGV > 0) {
|
|
die "dirname.pl: too many arguments\n";
|
|
}
|
|
|
|
my $d = $ARGV[0];
|
|
|
|
if ($d =~ m|.*/.*|) {
|
|
$d =~ s|/[^/]*$||;
|
|
} else {
|
|
$d = ".";
|
|
}
|
|
|
|
print $d,"\n";
|
|
exit(0);
|