#!/usr/bin/perl use strict; my $location = 'style.css'; print "Content-type: text/plain\n\n"; -e $location ? print "OK" : print "Nicht OK"; exit;