Help for this page

Select Code to Download


  1. or download this
    system("echo $password | foo -args file");
    
  2. or download this
    system("foo -args file < passwordfile");
    
  3. or download this
    open(FOO,"| foo -args file");
    print FOO "username\n";
    print FOO "password\n";
    close(FOO);