I have a list of paths in a file => small.txt
i wish to open that file, copy the path and change my directory to the path collected from small.txt.
open(LIST,"small.txt") or die "Cant open small.txt";
@arr= <LIST>;
for($i = 0; $i < @arr; $i++)
{
chomp($arr[$i]);
print "path read from file =...