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
vi hello.cgi
#!/usr/bin/perl print "Content-type: text/html \n\n"; print "helloworld\n";
hello.cgiのパーミションを755へ
chmod 755 hello.cgi
|