Help for this page

Select Code to Download


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