Hallo Tom,
ich wollte fragen, wie man mit Perl das Datum angeben kann. Mit der Uhrzeit geht das ja (soweit ich weiß) mit
localtime(time)
vielleicht hilft Dir folgendes weiter:
aus perlfunc zu localtime:
In scalar context, returns the ctime(3)
value:
$now_string = localtime; # e.g., "Thu Oct 13 04:54:34 1994"
This scalar value is not locale dependent, see
perllocale, but instead a Perl builtin.
[...]
To get
somewhat similar but locale dependent date
strings, set up your locale environment
variables appropriately (please see
perllocale) and try for example:
use POSIX qw(strftime);
$now_string = strftime "%a %b %e %H:%M:%S %Y", localtime;
Note that the %a and %b, the short forms of
the day of the week and the month of the
year, may not necessarily be three characters
wide.
Ciao,
Bea