Thread ENV auf Console anders auf Webserver
(12 answers)
Opened by chmod777 at 2015-01-02 18:43
Geht auch so:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 #!/usr/bin/perl use strict; use warnings; use feature qw(say); say $ENV{SERVER_PROTOCOL} ? "Content-type: text/plain\n\nBin auf Webserver" : (-t 1) ? "Bin auf Konsole" : "Bin Sonstwo"; Editiert von GwenDragon: Content-type fehlte Last edited: 2015-01-03 10:52:33 +0100 (CET) |