Jump to content

May sound simple....

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
1 reply to this topic

#1
Pan

Pan

    Learning Programmer

  • Members
  • PipPipPip
  • 61 posts
How do I actually delete a directory in Linux? I've tried 'rm' but this doesn't seem to do the trick.

#2
v0id

v0id

    Retired

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,936 posts
You need to delete the directory recursively.
This can be done by providing the "-r"-argument.
$ rm -r <directory>