T
Trans
I'm trying to move a folder from the /tmp dir (accessed via Dir.tmpdir)
to the current working directory. It fails to do the move and instead
just copies the folder. I get no error or warning. I can do it just
find from the command line:
mv /tmp/foo bar
but if I try
ruby -w -rfileutils -e "FileUtils.mv('/tmp/foo', 'bar'))"
It only copies. Anyone have any idea why?
Thanks,
T.
ruby 1.8.4 (2005-12-24) [i486-linux] on ubuntu
to the current working directory. It fails to do the move and instead
just copies the folder. I get no error or warning. I can do it just
find from the command line:
mv /tmp/foo bar
but if I try
ruby -w -rfileutils -e "FileUtils.mv('/tmp/foo', 'bar'))"
It only copies. Anyone have any idea why?
Thanks,
T.
ruby 1.8.4 (2005-12-24) [i486-linux] on ubuntu