You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
335 B
Perl

#!/usr/local/bin/perl -w
use File::Basename;
use Getopt::Long;
my $ret = GetOptions ("f|filename:s");
my $filename = $opt_f || die "Usage: $0 -f filename\n";
# Return the dirname of the given filename.
my $dirname = dirname($filename);
print "The directory name of $filename is $dirname\n";