Help for this page

Select Code to Download


  1. or download this
    if (-f && '$_, !~ /^\./' && ($age > $limit)) {
              ^^^^^^^^^^^^^^
    
  2. or download this
    if (-f && 'Hello World' && ($age > $limit)) {
    
  3. or download this
    if (-f && $_ !~ /^\./ && ($age > $limit)) {
    
  4. or download this
    if (-f && !/^\./ && ($age > $limit)) {