- or download this
open (INF,"sortby_list.dat");
@file=<INF>;
close(INF);
- or download this
@file = (a..z); - or download this
if (-e $fitem_pathname) {
if (-d $fitem_pathname) {
...
}
}
}
- or download this
if (-e $fitem_pathname && -d $fitem_pathname) {
unless ($_ eq ".." || $_ eq ".") {
...
}
}
- or download this
if($_ =~ m/^[$FORM{'sortby'}]/
- or download this
if($_ =~ m/^$FORM{'sortby'}/i)