http://qs1969.pair.com?node_id=11150114


in reply to Why does system("mv $x $y") not work when it works at the command line?

The problem is likely related to the command line. I would suggest you do the move in perl:

use File::Copy; move('source.file','dest.file')

See: https://metacpan.org/pod/File::Copy

  • Comment on Re: Why does system("mv $x $y") not work when it works at the command line?
  • Download Code