【HTMLファイル】 <html> <head> <title>ファイルアップロード</title> </head> <body> 【gawk プログラム】 <!-- fromの属性に enctype="multipart/form-data" を付けるのを忘れずに! //--> <form method="post" action="/cgi-bin/gawk.cgi" enctype="multipart/form-data"> <input type=text name="path"> <input type="file" name="file1" size="60" /> <input type="file" name="file2" size="60" /> <input type="submit" name="submit" value="送信" /> </form> </body> </html> 【受け取る gawk】 #! /usr/bin/gawk -f BEGIN{ print "Content-Type: text/plain" print "" print "This is test" print 1,ENVIRON["AUTH_TYPE"] print 2,ENVIRON["CONTENT_LENGTH"] print 3,ENVIRON["CONTENT_TYPE"] print 4,ENVIRON["GATEWAY_INTERFACE"] print 5,ENVIRON["PATH_INFO"] print