Thomas Reichhart <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] /var/www/rapidleech $ mv rapidleech/* . > mv: cannot move `rapidleech/classes' to a subdirectory of itself, `./classes' > mv: cannot move `rapidleech/configs' to a subdirectory of itself, `./configs' > mv: cannot move `rapidleech/hosts' to a subdirectory of itself, `./hosts' > mv: cannot move `rapidleech/images' to a subdirectory of itself, `./images'
Thanks for the report. mv is right to fail (because the destination directory is not empty), but the diagnostic is wrong. If you use a newer version of mv, you'll see it's fixed: (this is with coreutils-6.12, but it's fixed in 6.0 too) $ mkdir -p d/x a/d; mv a/d . mv: cannot move `a/d' to `./d': Directory not empty -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

