Help for this page

Select Code to Download


  1. or download this
    unless (/^#!/) {next READ if (/^\s*#/)};
    
  2. or download this
    unless (/^#!/) {
        if (/^\s*#/) {
            next READ;
        }
    }
    
  3. or download this
    if (/^\s*#/) { next READ } unless (/^#!/);
    
  4. or download this
    if (/^\s*#/) { 
        next READ 
    } 
    
    unless (/^#!/);