linux常用命令
1、find命令
find / "*.log" 查找/目录下.log结尾的档案
find / -mtime -3 查找/目录下三天内被修改的档案
find / -mtime +4 查找/目录下四天前被修改的档案
find / -mtime 2 查找/目录下2天前当天被修改的档案
find / -size +10M 查找/目录大于10M的文件
find ./ -size +1M -exec ls {} \; 注意\;
2、cat -n file显示行数
3、 wc
wc file 显示文件行数、单词数、字节数
wc -l file 显示文件函数
wc -c file 显示文件字节数
wc -w file 显示文件单词个数
4、 grep
grep -i the file 过滤包含the的行,且忽略大小写
grep -v the file 过滤不包含the的行
5、echo
echo -n "123" -n代表不换行;
标签:运维之道,wc,显示文件,笔记,目录,查找,file,linux,find From: https://www.cnblogs.com/liuxingxing/p/16947614.html