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