Help for this page

Select Code to Download


  1. or download this
    my @array = (
        'binary_app=/usr/bin/true',
    ...
    );
    
    printf qq|<input type=text name="%s" value="%s">\n|, split '=' for @ar
    +ray;
    
  2. or download this
    printf qq|<input type=text name="%s" value="%s">\n|, map {s/"/'/g; $_}
    + split '=' for @array;