I am using Centos as my server OS and in my desktop I have a directory called "john", I need delete it via a command. How can I do this?
Asked
Active
Viewed 6.8k times
3 Answers
11
You can use
rm -f -r john
It will recursively delete john directory even if it contains files or subdirectories.

Slavik Svyrydiuk
- 111
2
If the directory is empty then you can just do rmdir john
.
Or you can force it with rm -r john
.

micah94
- 161
- 3
0
rm -r ${XDG_DESKTOP_DIR:-$HOME/Desktop}/john
XDG_DESKTOP_DIR is an environment variable that contains the path to the desktop directory. If it's not set, we fall back to $HOME/Desktop.

0x40
- 21
-
my account is [root@localhost]# if it is so how can I remove My desktop directory. I am little bit confused with this ${XDG_DESKTOP_DIR:- – John Nov 21 '17 at 15:28
-
@John why on earth are you logging in as root for normal operations? – Chris Davies Nov 21 '17 at 15:54
-
-f
and-r
together. Like this :rm -rf
. – Hunter.S.Thompson Nov 21 '17 at 15:27