6 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
C:\>copy con test.txt
Test
^Z
1 Datei(en) kopiert.
C:\>perl
$tm = localtime((stat("test.txt"))[8]);
print $tm;
^Z
Thu Mar 11 01:04:30 2004
C:\>del test.txt
C:\>copy con test.txt
Test
^Z
1 Datei(en) kopiert.
C:\>perl
$tm = localtime((stat("test.txt"))[8]);
print $tm;
^Z
Thu Mar 11 01:05:59 2004
C:\>
6 Einträge, 1 Seite |