Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Perl で開いている ftp ハンドルに入力を送信しようとしています。私のスクリプトは
open (CALC, "|ftp abc.cde.com"); print "hello"; close CALC;
Web サイトは、匿名ユーザーのみを入力として受け入れます。使用してみ$guess = <STDIN>;ましたが、うまくいきません。Perl にユーザーを要求させ、ユーザーをハードコーディングさせるにはどうすればよいですか?
$guess = <STDIN>;