Help for this page

Select Code to Download


  1. or download this
    my @EnvListFile=glob("$HOMEDIR/data/EnvList.*");
    
  2. or download this
    open DIR, "$HOMEDIR/data/EnvList" or die $!;
    my @EnvListFile = grep{ -f "$HOMEDIR/data/EnvList/$_"
                             and
                            /\d+$/ } readdir DIR; #perhaps???