In article <[EMAIL PROTECTED]>, Tim McGeary wrote:

> Is there anyway to get the date from the system in perl?
> 
> Tim

Something like(?):

# system_date

my $date = localtime;

print "$date\n";

sputnik:~/perl/perl.beg/new -> ./system_date
Mon Jul 21 21:43:04 2003

perldoc -f localtime


-- 
Kevin Pfeiffer
International University Bremen

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to