Help for this page

Select Code to Download


  1. or download this
    '-validatecommand'  => sub {$_[1] =~/[\w:-]+/ ;} ,
    
  2. or download this
    '-invalidcommand' => sub {
                              return if $_[1] =~/^[[:cntrl:]] ;
                              $top -> bell;
                             }
    
  3. or download this
    '-invalidcommand' => sub {
                              $top -> bell if $_[1] =~/^[[:cntrl:]] ;
                             }