Help for this page
#!/path/to/perl -w use strict; ... print "Your Username is: $uname"; #print it out print "password:"; chomp($passwd = <STDIN>);
#!/path/to/perl -w use strict; ... chomp($passwd = <STDIN>); system("/path/to/prog", "$uname", "$passwd");