排查系统的磁盘占用
sudo du -h --max-depth=1
df ./ 是查看挂载在哪里的意思
获取当前目录下文件的总大小
du -sh
排查系统后台正在运行的python程序
ps aux | grep python
杀死对应id的程序
kill -9 ID
统计当前目录下有多少文件
ls -l|grep "^-"| wc -l
显示一个脚本file开头的部分,并查找脚本中某个字符串出现的次数
显示一个脚本tt开头的部分
head file_path
查找脚本tt中1的个数
grep 1 file_path | wc -l
或者查找整个脚本中某个特定的字符串
cat file_path | grep "xx"