运维

运维相关知识和内容

linux常用命令大全

查找 find

find命令用来查找文件

按照文件名查找:

find -name "filename"

按照修改时间查找(查找十分钟内修改的文件):

find -mmin +0 -mmin -10


匹配 grep

查找文件中匹配的内容,最基础的例子如下

grep "content" filename


查找命令和程序 whereis

whereis command_name


将命令结果输出保存符号 | 

在命令后加上 | 和保存结果的文件名

ls -l | output.txt

如果不想删除文件中已有的内容

ls -l | -a output.txt


ls -l > output.txt

如果想要不删除文件中已有的内容:

ls -l >>output.txt


删除文件和目录 rm

rm -rf /usr/local/logs/*.*


远程连接 ssh

ssh root@192.168.1.1


上传下载文件命令 scp

scp /usr/local/www/wwwroot root@192.168.1.1/usr/local/www/wwwroot