Hi Guys,
I am new to perl scripting. I'm trying to get files from some servers. The names of the servers are stored in a file.
Now if I use this code, it doesn't work:
open(INFO, "$txtfile"); # Open the file
while (<INFO>) {
($var1, $var2) = split(/ /,$_,2);
$line...