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」)
 
(相違点なし)

2015年5月20日 (水) 02:58時点における最新版

vi hello.cgi

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

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

chmod 755 hello.cgi