in reply to Unix Perl and Html
Now a cronjob running printstatus into a logfile would be better. check out the man page for cron.. something like 0 0 * * * sudo /path/to/printstatus >> /path/to/logfile should work ok.
Depending on the output of printstatus (got a sample?) you could read it in line by line and print out the html using the CGI.pm.. also something like
#!/usr/bin/perl -w use strict; use CGI; my $query=new CGI(); print $query->start_html(-title=>'Printer Status'); open(LOG," /path/to/logfile") || die "Cannot open logfile!: $!\n"; while(<LOG>) { print $query->br,"$_ ",br; } close(LOG); exit;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Unix Perl and Html
by meccaxlr (Initiate) on Aug 16, 2001 at 17:47 UTC | |
by thatguy (Parson) on Aug 16, 2001 at 17:51 UTC | |
by meccaxlr (Initiate) on Aug 16, 2001 at 18:05 UTC | |
by meccaxlr (Initiate) on Aug 16, 2001 at 18:52 UTC | |
by meccaxlr (Initiate) on Aug 17, 2001 at 00:56 UTC | |
by thatguy (Parson) on Aug 17, 2001 at 01:03 UTC | |
by meccaxlr (Initiate) on Aug 22, 2001 at 17:26 UTC | |
by thatguy (Parson) on Aug 22, 2001 at 20:14 UTC | |
by meccaxlr (Initiate) on Aug 27, 2001 at 18:33 UTC | |
|