can anyone tell me why when I type:
mv -f ./tmp/members ./
I get:
mv: cannot move `./tmp/members' to a subdirectory of itself, `./members'
And moreover the correct way to move this directory?
Also, there is already a directory at ./members ... I want to completely overwrite this directory, not just add the new contents to it.
I've discovered that this works:
mv tmp/members members
but only for new contents... the old contents are still left behind...
Thanks!
-Eric