21:47 >perl -wE "system('start', 'https://www.google.com/search?q=finance&source=lnms&tbm=isch');" 'source' is not recognized as an internal or external command, operable program or batch file. 'tbm' is not recognized as an internal or external command, operable program or batch file. 21:53 > #### 21:53 >perl -wE "system('start', 'https://www.google.com/search?q=finance;source=lnms;tbm=isch');" 21:54 > #### use strict; use warnings; use Browser::Open qw( open_browser ); my $url = 'https://www.google.com/search?q=finance;source=lnms;tbm=isch'; my $ok = open_browser($url); printf "\$ok = >%s<: %s\n", $ok, !defined($ok) ? 'no recognised command found' : $ok == 0 ? 'command found and executed' : 'command found, error while executing'; #### 21:58 >perl 1952_SoPW.pl $ok = >0<: command found and executed 21:58 >