#!/usr/local/bin/perl -w $protectedfile = "/home/romana/image.jpg"; &SendImageFile($protectedfile); sub SendImageFile { local ($filename) = @_; print "Content-type: image\/jpeg","\n\n"; print `cat $filename`; }