vote up 2 vote down star
1

how can I delete all files and sub directories from current directory including current directory?

flag

5 Answers

vote up 5 vote down check

Under bash with GNU tools, I would do it like that (should be secure in most cases):

rm -rf -- "$(pwd -P)" && cd ..

not under bash and without GNU tools, I would use:

TMP=`pwd -P` && cd "`dirname $TMP`" && rm -rf "./`basename $TMP`" && unset TMP

why this more secure:

  • end the argument list with -- in cases our directory starts with a dash (non-bash: ./ before the filename)
  • pwd -P not just pwd in cases where we are not in a real directory but in a symlink pointing to it.
  • "s around the argument in cases the directory contains spaces

some random info (bash version):

  • the cd .. at the end can be omitted, but you would be in a non-existant directory otherwise...

EDIT: As kmkaplan noted, the -- thing is not necessary, as pwd returns the complete path name which always starts with / on UNIX

link|flag
As noted above, directories starting with “--” are not a problem: pwd’s result always starts with a “/”. – kmkaplan Feb 15 at 14:42
sorry, you are right! – Johannes Weiß Feb 15 at 14:47
what if you would like to include first a small dialog aka are you sure you want to delete this directory? and make alias for it all? – Ib33X Feb 15 at 19:18
You can use rm -rfi instead of rm -rf and it will ask you "rm: remove directory `/tmp/dir_to_be_deleted'?", do you mean that? – Johannes Weiß Feb 15 at 21:20
rm -rfi would ask for every action in this directory, I was thinking something that will ask only once and delete everything. – Ib33X Feb 16 at 8:15
show 1 more comment
vote up 0 vote down

operating system? on the *NIX-based stuff, you're looking for 'rm -rf directory/'

NOTE: the '-r' flag for 'recursive' can be dangerous!

link|flag
vote up 2 vote down
olddir=`pwd` && cd .. && rm -rf "$olddir"

The cd .. is needed, otherwise it will fail since you can't remove the current directory.

link|flag
You can remove the current directory. – kmkaplan Feb 15 at 14:16
kmkaplan, are you sure you can delete the current directory with rm? How many operating systems did you base that knowledge on? – dwc Feb 15 at 14:24
wont work for a directory called --no-preserve-root for example. – Johannes Weiß Feb 15 at 14:28
dwc: yes I tested Linux, OpenBSD and MacOSX. But I am pretty sure every Unix would do the same and I even think every POSIX system will do it. – kmkaplan Feb 15 at 14:29
You can in Linux (just confirmed). Interestingly enough, once the directory is deleted, ls -al reports "total 0" instead of something like total X, with . and .. present – Mikeage Feb 15 at 14:29
show 2 more comments
vote up 0 vote down
rm -fr "`pwd`"
link|flag
Yeah, a bug in SO prevented the backquotes from appearing. – kmkaplan Feb 15 at 14:17
Oh it is working with the backquotes - apologies ... – Caffeine Feb 15 at 14:20
wont work for a directory called --no-preserve-root for example, too – Johannes Weiß Feb 15 at 14:28
Johannes: pwd returns an absolute path. It will never start with dashes. – kmkaplan Feb 15 at 14:38
kmkaplan: sorry, thats correct! Didn't thing about that. I always use -- and most of the time it is necessary, but wiht pwd it's not. – Johannes Weiß Feb 15 at 14:50
vote up 1 vote down

EDIT: Missed the part in the question about removing the current directory, sorry.

If DOS / Windows CMD then:

RD /S /Q [drive:]path

/Q = Quiet mode and won't ask for confirmation - probably not advisable unless it has to be run unattended

EDIT2:

I think this would be possible under DOS / Windows CMD, but I can;t quite find a way to pipe the data between commands. Someone else may know the fix for that?

FOR /F %i IN ('cd') DO SET MyDir=%i | CD .. | RD /S %MyDir%
link|flag
This does not address the current directory part. – kmkaplan Feb 15 at 15:22
Ah, good point, sorry missed that. – Kristen Feb 15 at 15:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.