Search results

  1. J

    CGI script long running process timeout?

    I have a CGI webpage that executes command usung system() but sometimes the webpage times out because the process takes to long to run. I need to rewrite this page to execute the system() command without waiting and then get the results back to the webpage.
  2. J

    Can someone convert this script from AWK to Perl?

    I have this awk command that I would like to use in a perl script and wondered if someone could convert this for me. awk -F= '{arr[$1]+=$2} END {for (i in arr) {print i, arr[i]}}' Thanks
Back
Top