Quantcast
Channel: how to get the value of last executed command in strawberry perl - Stack Overflow
Viewing all articles
Browse latest Browse all 2

how to get the value of last executed command in strawberry perl

$
0
0

I am trying to execute a simple strawberry perl script for file copy to get the code from the last executed command. But I get 0/success in all the case.

Code from my test.pl script

use File::Copy;  use strict;use warnings;my $source_file = "D:\\abc\\def\\in\\test\\test1.csv";my $target_file = "D:\\abc\\def\\in\\test\\test2.csv";if ( copy( $source_file, $target_file ) == 0 ) {    print "success";} else { print "fail"; }

Since the path I used D:\\abc\\def\\in\\test\\test1.csv does not exist on the machine so I expect to get fail but I get success no matter what I provide.

Following the execution and output:

D:\pet\common\bin\backup>perl test.plsuccess

Viewing all articles
Browse latest Browse all 2

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>