Help for this page

Select Code to Download


  1. or download this
    my @files = qw (/usr /home /sbin /opt/...);
    
    my @filtered = grep !/^(\/usr|\/sbin|\/platform|\/lib)$/, @files;
    
    print "@filtered\n";     # /home /opt/...