mashe wrote:
> I tried using rm -d and rm -f to remove an entire directory including the
> contents of that directory and it would not work.
> thank you for your assistance.

Neither of those options would be appropriate to remove a directory
and its contents.  The -d option is almost never appropriate.  If you
have to ask about the -d option then I am certain that it is not the
option you want.

The command you are probably looking for is:

  rm -rf /path/to/some/directory-to-be-removed

Remember that 'rm' removes files.  Be careful when using it.

Bob


_______________________________________________
Bug-fileutils mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-fileutils

Reply via email to