in reply to Re^3: Parse HTML content
in thread Parse HTML content

How can i check if the webserver process is running under a memory limit lower than my teminal user?

Replies are listed 'Best First'.
Re^5: Parse HTML content
by Eliya (Vicar) on Mar 09, 2012 at 20:44 UTC

    Depends on a variety of factors...  On newer Linux boxes you could, for example, do

    print qx(cat /proc/self/limits);

    from within your CGI script.  (And then compare it with the contents of /proc/self/limits when queried from the terminal.)