how can I delete all files and sub directories from current directory including current directory?
|
1
|
|
|
|
|
|
Under bash with GNU tools, I would do it like that (should be secure in most cases):
not under bash and without GNU tools, I would use:
why this more secure:
some random info (bash version):
EDIT: As kmkaplan noted, the |
||||||||||
|
|
|
operating system? on the *NIX-based stuff, you're looking for 'rm -rf directory/' NOTE: the '-r' flag for 'recursive' can be dangerous! |
||
|
|
|
|
The |
||||||||||
|
|
|
|
||||||||||
|
|
|
If DOS / Windows CMD then:
/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?
|
|||
