I was trying to remove a directory called src, but it had other files and directories in it.
Main Topics
Browse All TopicsHello folks,
Newb question here. I'm trying to clean up some stuff on an OpenBSD 4.1 build. I've checked the man pages for rmdir, and this is all it contains:
# man rmdir
RMDIR(1) OpenBSD Reference Manual RMDIR(1)
NAME
rmdir - remove directories
SYNOPSIS
rmdir [-p] directory [...]
DESCRIPTION
The rmdir utility removes the directory entry specified by each directory
argument, provided it is empty.
Arguments are processed in the order given. In order to remove both a
parent directory and a subdirectory of that parent, the subdirectory must
be specified first so the parent directory is empty when rmdir tries to
remove it.
The options are as follows:
-p Each directory argument is treated as a pathname of which all
components will be removed, if they are empty, starting with the
last most component. (See rm(1) for fully non-discriminant re-
cursive removal.)
The rmdir utility exits with one of the following values:
0 Each directory argument referred to an empty directory and was
removed successfully.
>0 An error occurred.
EXAMPLES
$ rmdir foobar
Remove the directory foobar if it is empty.
$ rmdir -p cow/horse/monkey
Remove all directories up to and including cow, stopping at the first
non-empty directory (if any).
SEE ALSO
rm(1), rmdir(2)
STANDARDS
The rmdir utility is expected to be IEEE Std 1003.2 (``POSIX.2'') compat-
ible.
HISTORY
A rmdir command appeared in Version 1 AT&T UNIX.
OpenBSD 4.1 May 31, 1993 1
#
I tried rmdir -p, then the directory name, but still get the message Directory not empty:
# rmdir -p src
rmdir: src: Directory not empty
#
The src directory contains over 20 folders. I really don't want to empty each one individually.
Am I using rmdir wrong, or is there another command to clean up directories that contain files?
Any help is much appreciated.
Ted
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: gheistPosted on 2007-11-02 at 14:36:15ID: 20204665
rm -rfi ../usr/obj/*
Remove i for no questions asked
What exactly is to be cleaned?