查询磁盘占用:df -h
查询目录磁盘占用:du -h --max-depth=1
删除文件:rm xx.txt
批量删除文件:rm *.txt rm 2023-*.log
删除目录及子目录文件:rm -rf aaa
进程类:
top
top -p 1000
atop 5
ps aux
ps aux | grep 1000
查看进程所在目录:ll /proc/1000
查询磁盘占用:df -h
查询目录磁盘占用:du -h --max-depth=1
删除文件:rm xx.txt
批量删除文件:rm *.txt rm 2023-*.log
删除目录及子目录文件:rm -rf aaa
进程类:
top
top -p 1000
atop 5
ps aux
ps aux | grep 1000
查看进程所在目录:ll /proc/1000