常用的跑分脚本
curl -sL yabs.sh | bash
只跑分
curl -sL yabs.sh | bash -s -- -i -f
测试磁盘实际速度
dd bs=64k count=4k if=/dev/zero of=test oflag=dsync
看硬盘通电时间的
wget -q https://github.com/Aniverse/A/raw/i/a && bash a
开启bbr
wget --no-check-certificate https://github.com/teddysun/across/raw/master/bbr.sh && chmod +x bbr.sh && ./bbr.sh
python的测试网站速度的
wget -c https://raw.githubusercontent.com/reorx/httpstat/master/httpstat.py
文件按照大小排序显示
du -s * | sort -rn | cut -f2- | xargs -d "\n" du -sh |more
文件太多没法删除,用这个命令
find . -name "*.txt" -print0 | xargs -0 rm