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.
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