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?

John
  • 41

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