facebook twitter hatena line email

Perl/helloworld

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

vi hello.cgi

#!/usr/bin/perl
print "Content-type: text/html \n\n";
print "helloworld\n";

hello.cgiのパーミションを755へ

chmod 755 hello.cgi