Some quick tips

来源:互联网 发布:串红网络什么意思 编辑:程序博客网 时间:2024/06/05 20:07
  1. Find and manipulate specific files
  • find /foo -maxdepth 1 -atime +366 -exec mv {} /bar \;
  • find /foo -maxdepth 1 -atime +366 -print0 | xargs -ro sh -c 'mv "$@" /bar' move