常用命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用命令相关的知识,希望对你有一定的参考价值。
1 删除/u01 /logs/目录中超过三个月的日志【find后面的-name后面只能接一个文件名,也就是说-name后面通配符匹配的只能是一个文件】find /u01/logs/ -type f -mtime +90 -exec rm -f {} \;
2
$locate lj.sh 查看lj.sh文件的位置
3
grep带有彩色输出
tail -1000 log20190301.txt | grep --color=auto ‘错误‘ -C 10
4
curl -sL http://10.1.28.68/tools/repos/set_yum.sh | bash
wget -O 指定下载的地址
5.设定时间
date -s "2019-03-21 18:20:00"
6.Stat命令,查看文件的属性。
[[email protected] APP02:/u01/]$stat config.properties
File: `config.properties‘
Size: 2029 Blocks: 8 IO Block: 4096 regular file
Device: fd05h/64773d Inode: 3670101 Links: 1
Access: (0754/-rwxr-xr--) Uid: ( 501/ sss) Gid: ( 501/ sss)
Access: 2019-04-22 12:12:17.043740686 +0800
Modify: 2019-03-26 17:00:16.448368953 +0800
Change: 2019-03-26 17:00:16.456368665 +0800
7 sed
Sed替换 sed –I #1#2#g test.sh
删除以Love开头的行
sed -i ‘/^Love/d‘ 1.txt
在echo "2";后面加上一条echo "3";可以用如下命令
sed -i ‘/echo \"2\";/a\echo \"3\";‘ test.sh
以上是关于常用命令的主要内容,如果未能解决你的问题,请参考以下文章