Simple task:
I have a script with line:
qx(wget -P $destination $file) || die "i can't download file: $file!\n";
but every time (if it was success or not), the script dies.
How should i change it to idiom behavior? (success - live, not - die)
Thanks for help!
Some edition: I want to know all logs, so i prefer to use line such this:
print qx(...)||die"EXPLAIN";