删除当前目录下最早的三个文件
bashls -rt | head -n 3 | xargs -I {} rm -rf {}
ls -rt | head -n 3 | xargs -I {} rm -rf {}