🏒

linux 命令速记

  • 获取当前目录下占空间的前 20 条
du -h ./ | sort -h -r | head -n 20
  • 查询端口号
netstat -tnlp
  • 查询全局 软连接方式
find / -type l -exec ls -l {} \;