Perl script comes out because of a command failure. How to overcome it?

Hi,
I’ve a command which installs android apks one after the other. These apks names are stored in a file. I’m accessing the text file and issuing the below commmand to install apks.
<code>
$t = new Net::Telnet (Timeout => undef);
$username=“sqa”;
$password=“Tmie”;
$t->open(“xxxx.xx.com”);
$t->login($username, $password);
$req_apks = “re2.txt”;
open(F2, “<”, “$req_apks”) or die “Cannot open APK Filelist file:$!”;
my $req;

while ($req = <F2>)
{
chomp;
@b= $t->cmd(“./adb install $req”);
print @b;
sleep(3);
print "
";
}
</code>
But the command "./adb install " is failing after 1 or 2 apks are installed. I’ve around 10 apks in the text file to be installed. Is there any way so that even if ./adb install commmand fails the script should continue with dying?

Thanks,
Sharath