Blogger Information
Blog 47
fans 0
comment 0
visits 55045
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Linux 常用命令
tobeavampire的博客
Original
820 people have browsed it

pwd    当前目录

cd /    进入根目录

ls    查看当前目录文件

rm 文件名 删除文件

rm -f 文件名 强制删除不做提示

Linux 删除文件夹和文件的命令


-r 就是向下递归,不管有多少级目录,一并删除
-f 就是直接强行删除,不作任何提示的意思

删除文件夹实例:
rm -rf /var/log/httpd/access
将会删除/var/log/httpd/access目录以及其下所有文件、文件夹

rm -rf * 清空当前目录

clear 清屏

s 选择服务器

vim 打开文件

退出命令

:wq 保存并退出

ZZ 保存并退出

:q! 强制退出并忽略所有更改

:e! 放弃所有修改,并打开原来文件。

 删除所有后缀名相同的文件

方法二: 
find . -name ‘*.exe’ -type f -print -exec rm -rf {} \; 
(1) “.” 表示从当前目录开始递归查找 
(2) “ -name ‘*.exe’ “根据名称来查找,要查找所有以.exe结尾的文件夹或者文件 
(3) ” -type f “查找的类型为文件 
(4) “-print” 输出查找的文件目录名 
(5) 最主要的是是-exec了,-exec选项后边跟着一个所要执行的命令,表示将find出来的文件或目录执行该命令。 
exec选项后面跟随着所要执行的命令或脚本,然后是一对儿{},一个空格和一个\,最后是一个分号

、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、





Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post