inputタグのtype=fileは、CGI::filefieldで出せる。
https://pointoht.ti-da.net/e6805798.html
action.cgiで、
とする。
今回はfilefieldに何も指定しない。
そして、ファイルアップロードはマルチパートなので、start_formでも何も指定しない。
perlコマンドで、
$ perl action.cgi Content-Type: text/html; charset=ISO-8859-1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US"> <head> <title>CGI::filefield</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> </head> <body> <form method="post" action="http://localhost" enctype="multipart/form-data"> <input type="file" name="" /><input type="submit" name=".submit" /></form> </body> </html>$
こうなる。
nameは空欄となっているのだが、
この状態でファイルを指定して送信。
しかし、ファイルバイナリは送られていない模様。
やはりnameがいるようだ。
Sample/perl/CGI/filefield/src/CGI at master · bg1bgst333/Sample · GitHub