0

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?

Hunter.S.Thompson
  • 8,839
  • 7
  • 26
  • 41
John
  • 41
  • 1
  • 2
  • 5

3 Answers3

11

You can use

rm -f -r john

It will recursively delete john directory even if it contains files or subdirectories.

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
  • 2
  • 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? – roaima Nov 21 '17 at 15:54
  • ok tell me delete desktop directory logging as normal user – John Nov 21 '17 at 16:13