Disclaimer: This blog post from Baidu Experience http://jingyan.baidu.com/article/642c9d34dcba80644a46f72d.html, thank you to share!
Linux Delete directory is very simple, many people are still accustomed to use rmdir, but once the directory is not empty, it fell into deep distress, now use the RM-RF command.
Direct RM is available, but add two parameters-rf that is:RM-RF directory name
-R is recursive down, no matter how many levels of directory, delete
-F is directly forcibly deleted, without any hint of meaning
To delete a folder instance:
Rm-rf/var/log/httpd/access
The/var/log/httpd/access directory and all files and folders under it will be deleted
To delete a file usage instance:
Rm-f/var/log/httpd/access.log
This file will be forcibly deleted/var/log/httpd/access.log
Use this RM-RF with extreme caution, Linux does not have a recycle Bin
Copy and paste files and folders
Syntax: MV [option] sourcefile/sourcedirectory targetdirectory
Option common with-F forced action-I interactive operation
Linux command delete files and folders copy and paste files and folders