![]() |
|< 1 2 3 4 >| | ![]() |
31 Einträge, 4 Seiten |
1
2
3
4
5
6
7
8
#!/usr/bin/perl
use strict;
my $location = 'style.css';
print "Content-type: text/plain\n\n";
-e $location ? print "OK" : print "Nicht OK";
exit;
<link type="text/css" rel="stylesheet" href="../styles/style.css" />
1
2
3
4
5
6
7
8
#!/usr/bin/perl
use strict;
my $location = 'style.css';
print "Content-type: text/plain\n\n";
-e $location ? print "OK" : print "Nicht OK";
exit;
![]() |
|< 1 2 3 4 >| | ![]() |
31 Einträge, 4 Seiten |