On Fri, 04 Feb 2000, Chris Job wrote:
> Hi folks
> Can anyone tell me how to remove a directory that is no empty?
Ray gave you a pointer and said read the man page so you will
understand the command, a very good idea.
The following is an example
/usr/local/src/pipo
do;
cd /usr/local/src/pipo
pwd # This to MAKE SURE YOUR IN pipo.
rm -rf *
to delete hidden files (the ones with a leading . )
rm -rf .*
cd ..
rmdir pipo
Remember the -r is recursive and the -f is force.
> Thanks
> Chris
>
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
> the body of a message to [EMAIL PROTECTED]
> Please read the FAQ at http://www.linux-learn.org/faqs
--
Regards Richard
[EMAIL PROTECTED]
http://people.zeelandnet.nl/pa3gcu/
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs