Proudly hosted with Dreamhost

Save $20 when signing up for Dreamhost by using the promo code amnuts20
If you find these scripts useful to you, appreciate the free support, or are just an all round nice person, then why not donate a little dosh to encourage me to continue? Every little helps!
|
Man Page Lookup
This will allow you to view man pages on your unix/linux system through a web browser. It formats correctly, and auto-links email addresses.
class.manpagelookup.php
14.2kb in size last modified Mar 18, 2011 at 8:35am 7160 views, 7062 downloads
test.manpagelookup.php
<html> <head> <title>Man Page Lookup</title> <style type="text/css"> <!-- // a { font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; font-size : 11px; text-decoration: none; } a:hover { text-decoration: underline; } A:link { text-decoration: none; COLOR: #054281; } A:visited { text-decoration: none; COLOR: #054281; } A:active { text-decoration: none; COLOR: #054281; } P { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif; } TD { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif; } TR { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif; } UL { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif; } LI { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif; } FORM { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif; } INPUT { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif;} SELECT { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif;} OPTION { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif; } TEXTAREA { FONT-SIZE: 10px; FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif;} // --> </style> </head> <body>
<?php
require('class.manpagelookup.php'); $mp = new ManPageLookUp(); $mp->useTimer(true); $mp->useCaching(true); $mp->setCacheDir(dirname(__FILE__) . '/cache/'); $mp->displayManPage(); $mp->displayVersion();
?>
</body> </html>
1.48kb in size last modified May 6, 2006 at 1:55pm 5735 views, 6123 downloads
|