in reply to Date extraction

for a simple script I always use
$date = 'date "+%d-%b-%Y"';
instead of loading a module.

forgive me prefering shell comands sometimes :)

Replies are listed 'Best First'.
RE: Re: Date extraction
by Anonymous Monk on Jun 13, 2000 at 21:01 UTC
    For just getting the date and time, I use:

    $date = scalar gmtime;
    No modules or shell commands!