Hi folks,

Check out below code, is this as expected or kind of bug?

<code>
use strict;
use warnings;
use CGI;

my $product_id="484f2faee9334559a1a72b4cdc056818";
print "Enter NT Login ID : ";
chomp (my $user = <STDIN>);        #[email protected]

print "Enter NT Password : ";
chomp (my $password = <STDIN>); #randompass
print "Enter Build Number : ";
chomp (my $bfolder = <STDIN>);     #12

print "User : $user, Password : $password, build : $bfolder";


======= Output =====
C:\Users\pkumar22\Desktop\MAT_Testing>perl matrix-getbuildoutputurl.pl
Enter NT Login ID : [email protected]

Enter NT Password : randompass
Enter Build Number : 12
, build : 12 randompassil.com --> This is what I am getting

User : [email protected], Password : randompass, build : 12  -->
This is what I expect.

</code>

-- 
Praveen Kumar
http://fedoraproject.org/wiki/User:Kumarpraveen
http://fedoraproject.org/
http://kumar-pravin.blogspot.com

Reply via email to