ubuntu清理磁盘脚本:
#!/bin/bash
#shell脚本用#作注释行,但是第一行的#!/bin/bash例外
sudo apt-get clean
sudo rm -rf /tmp/*
sudo rm -rf /var/cache/*
cd /var/log/
sudo du -h -d 1
rm -rf ./*
cd ~/.cache
sudo du -h -d 1
rm -rf ./*
apt-get autoclean # 删除旧版本软件缓存
apt-get clean # 删除系统内所有软件缓存
cd $HOME/.local/share/Trash/files/
rm -rfi *
apt --purge autoremove
apt clean
apt autoclean
find $HOME -type f -size +1024M -exec ls -sh {} +
参考链接:https://zhuanlan.zhihu.com/p/72059790