& Amp; 65279; & amp; 65279; when using this rm-rf command to delete files in linux, be sure to & amp; 26684; when using this command, there is no Recycle bin in linux. You can simply use rm, but you need to add the parameter-f, that is, the rm-f file path-f, to force the deletion directly. no
Linux commands for deleting files and folders
When using this rm-rf to delete files, you must be extremely careful that there is no Recycle bin in linux.
You can simply use rm, but add the parameter-f, that is, the rm-f file path.
-F means to delete the file directly without any prompts.
Delete a file instance:
Rm-f/var/log/httpd/access. log
The file/var/log/httpd/access. log will be forcibly deleted.
When we are in the directory corresponding to this file, we only need the rm command without any parameters.
Instance:
Rm test_bak.tar.gz
Delete a Directory user instance:
Rm-rf/var/log/httpd/access
The/var/log/httpd/access directory and all files and folders under it will be deleted.
Note that you must be extremely careful when using this rm-rf. linux has no recycle bin.
Of course, rm has more parameters and usage, and man rm can be viewed.