Re: Linux Uptime

2010-12-16 Thread Alan Haggai Alavi
Matt wrote: > I have a perl script but I want to exit it if the uptime on the server > is less then say an hour. Any idea how I would get uptime with perl? Hi, You could use the distribution: Unix::Uptime (http://search.cpan.org/perldoc?Unix::Uptime) Example: use strict; use warnings; us

Re: Linux Uptime

2010-12-16 Thread Jeff Peng
于 2010-12-17 11:29, Shawn H Corey 写道: Every "file" in it is a pipe that can be read using regular file handles. And I believe only Linux does this. Yep.Also the OP is asking exactly about linux. -- Jeff Peng jeffp...@gmx.net -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For addit

Re: Linux Uptime

2010-12-16 Thread Shawn H Corey
On 10-12-16 10:21 PM, Katie T wrote: /proc/uptime is a linux innovation I believe, other *nix variant may not have it (I don't think Solaris does). The /proc directory is a pseudo-directory that the kernel maintains. Every "file" in it is a pipe that can be read using regular file handles. A

Re: Linux Uptime

2010-12-16 Thread Katie T
On Fri, Dec 17, 2010 at 3:21 AM, Katie T wrote: > On Fri, Dec 17, 2010 at 2:25 AM, Jeff Peng wrote: >> 于 2010-12-17 9:32, Matt 写道: >>> >>> I have a perl script but I want to exit it if the uptime on the server >>> is less then say an hour.  Any idea how I would get uptime with perl? >> >> $ cat /

Re: Linux Uptime

2010-12-16 Thread Katie T
On Fri, Dec 17, 2010 at 2:25 AM, Jeff Peng wrote: > 于 2010-12-17 9:32, Matt 写道: >> >> I have a perl script but I want to exit it if the uptime on the server >> is less then say an hour.  Any idea how I would get uptime with perl? > > $ cat /proc/uptime > 4205976.64 4017280.59 > > The first column

Re: Linux Uptime

2010-12-16 Thread Jim Gibson
At 7:32 PM -0600 12/16/10, Matt wrote: I have a perl script but I want to exit it if the uptime on the server is less then say an hour. Any idea how I would get uptime with perl? On Unix: my $uptime = qx(uptime); Then parse $uptime with a regular expression, which may depend upon what your

Re: Linux Uptime

2010-12-16 Thread Jeff Peng
于 2010-12-17 9:32, Matt 写道: I have a perl script but I want to exit it if the uptime on the server is less then say an hour. Any idea how I would get uptime with perl? $ cat /proc/uptime 4205976.64 4017280.59 The first column is the host's uptime seconds. Jeff. -- To unsubscribe, e-mail: be

Re: Linux Uptime

2010-12-16 Thread Sheppy R
http://search.cpan.org/~burak/Sys-Info-Base-0.73/lib/Sys/Info/OS.pm#uptime Sys::Info::OS has an uptime() method. On Thu, Dec 16, 2010 at 8:32 PM, Matt wrote: > I have a perl script but I want to exit it if the uptime on the server > is less then say an hour. Any idea how I would get uptime wit

Linux Uptime

2010-12-16 Thread Matt
I have a perl script but I want to exit it if the uptime on the server is less then say an hour. Any idea how I would get uptime with perl? -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/