Trans wrote: > 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? FileUtils.mv is a ::cp and an ::unlink behind the scenes. I'm not familiar enough with Unix permissions -- perhaps they are such that you can move a file but not remove it? Devin