Guest_imported
New member
- Jan 1, 1970
- 0
Hi. Does anyone know how to see if I have GZIP installed on my server (like a simple test script). Thanks, Eric
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
prompt> which gzip <return>
#!/usr/local/bin/perl
$gz = `which gzip`;
print "$gz";
#!/usr/local/bin/perl
$gz = `which gzip`;
print "Content-type: text/html\n\n";
print "<html><head><title>g where?</title></head>\n";
print "<body><p>$gz</p></body></html>\n";