↧
Answer by DavidO for how to get the value of last executed command in...
If you look at perldoc File::Copy you will see the following:RETURN All functions return 1 on success, 0 on failure. $! will be set if an error was encountered.Therefore, your code should be exposing...
View Articlehow to get the value of last executed command in strawberry perl
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 scriptuse File::Copy; use...
View Article