Archive

Posts Tagged ‘Command-Delete’

How do I delete none-empty folder in Linux?

December 10th, 2008 No comments

The command you should use is

rm -r

Example

rm -r /var/mydir

This will remove “mydir” folder, if there’s content it will be recursively deleting them all.

Categories: FAQ & Tip