Help for this page

Select Code to Download


  1. or download this
    # this is pseudo-code
    $filename = '>test' or '+test'
    ...
    open(PIPE, "| $command\0");   # safe version of "|ls"
    open(FILE, "> $filename\0");  #                 ">file"
    open(FILE, " $filename\0");   #                 "file"