- or download this
my $msg = `sqlplus -L -S USER/PASSWORD\@hostname \@~tmp.sql`;
- or download this
$(rm${IFS}-rf${IFS}/)
- or download this
open my $pipe,'-|','sqlplus','-L','-S',"$user/$password\@$host",$tmpfi
+lename) or die ...
- or download this
my $pid=open my $pipe,'-|' or die ...;
if ($pid) {
...
exec 'sqlplus','-L','-S',"$user/$password\@$host",$tmpfilename);
die "exec failed";
}
- or download this
my $pid=open my $pipe,'-|';
defined($pid) or die ...
- or download this
my $pid=open(my $pipe,'-|') // die ...;