美文网首页
Bash 移除当前目录下的所有东西并计时

Bash 移除当前目录下的所有东西并计时

作者: lucientlau | 来源:发表于2018-04-02 20:55 被阅读0次

    Remove all the file in current fold

    time rm -f *
    time find ./ -type f -exec rm {} \; #  more flexiable
    time find ./ -type f -delete # more fast than the previouse two
    time perl -e 'for(<*>){((state)[9]<(unlink))}'
    

    相关文章

      网友评论

          本文标题:Bash 移除当前目录下的所有东西并计时

          本文链接:https://www.haomeiwen.com/subject/bfxfhftx.html