Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Monitor SETI command line client progress' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Monitor SETI command line client progress
Authored by: merlyn on Mar 14, '03 12:52:09PM
Cleaning that up a bit,
#!/usr/bin/perl -w

@ARGV = "/path/to/your/state.sah/file/here";
my $prog;
my $cpu;
while (<>) {
  $prog = $1 if /^prog=(.*)/;
  $cpu = $1 if /^cpu=(.*)/;
}

printf
  "\nSETI CLI MONITOR\n" .
    "----------------\n" .
  "%.1f %% processed\n" .
  "%.2f hours processing\n\n",
  $prog * 100, $cpu / 3600;
(Moderator... the preview code is still busted... it keeps turning entities into their equivalents on each preview pass... maybe you should have picked a Perl community system instead of the inferior PHP. {grin})

[ Reply to This | # ]
Monitor SETI command line client progress
Authored by: DeadAir on Mar 17, '03 08:14:53AM

Have you tried SetiCNTL as a simple OS X GUI for the Terminal.

It is a free download from Pandora Products at:

http://members.bellatlantic.net/~vze35xda/software.html

Allows caching of WUs, single or dual peocessors Macs, indicates progress and time taken to complete each WU.

Has worked well for me.



[ Reply to This | # ]