shell 查找最舊的10個文件 並移動

查找/test文件夾下最舊的10個以 txt 結尾的文件 ,將他們一次性移動到另一個目錄/tmphtml find /test -name "*.txt" | xargs ls -rt | head -n 10 | xargs -i mv {} /tmp/
相關文章
相關標籤/搜索