U
Urs
Hello
What is the correct formulation of this?
`cp $srcfile $dstfile` || do {
print "Execution error cp $srcfile, $dstfile\n";
};
It is always generating "Execution error ..." message.
I would like to have this message only if cp really failed.
Thanks
Urs
What is the correct formulation of this?
`cp $srcfile $dstfile` || do {
print "Execution error cp $srcfile, $dstfile\n";
};
It is always generating "Execution error ..." message.
I would like to have this message only if cp really failed.
Thanks
Urs