- or download this
my @oldlist = qw X /etc/passwd /etc/group /etc/shadow X;
- or download this
my @newlist = map s/\/etc\/// , @oldlist;
- or download this
$
$ cat t.pl
...
1
$
- or download this
$ cat ta.pl
#!/usr/bin/perl
...
1
$
- or download this
my @newlist = map {
my $l = $_;
$l =~ s/\/etc\///;
} @oldlist;
- or download this
$ ./tb.pl
...
1
$
- or download this
$ cat tc.pl
#!/usr/bin/perl
...
/egg/drop
shadow
$