我想在OS X中这样做:
ls -rt | xargs rm -i
但是,rm对某些文件有空格这一事实感到窒息.
我提到OS X因为BSD的ls版本没有-Q标志.
有没有办法在不使用find -print0的情况下执行此操作?
试试这个
原文链接:https://www.f2er.com/bash/384308.htmlwhile read -u 3 do rm -i "$REPLY" done 3< <(ls -rt)