unix

linux find good example

mulderu 2014. 6. 2. 18:52

현재 이하의 디렉토리구조를 그래도 복사하기 (파일제외)

find . -type d -exec mkdir -p ~/my-destination-folder/{} \;


ref : http://www.vionblog.com/linux-delete-files-older-than-x-days/

       Linux: Delete Files Older Than X Days

This is a very simple tutorial how to find and delete files older than X days. I needed this for a project where i collected some images and after a while they took too much space.

With this you will be able with the Linux find command to find your JPG files older then 30 days and then execute rm command on them.

Delete command

find /path/to/files/ -type f -name '*.jpg' -mtime +30 -exec rm {} \;

Explanation

  • First part is the path where your files are located. Don’t use wildcard * if you have a lot of files because you will get Argument list too long error.
  • Second part -type is the file type f stands for files
  • Third part -name is limiting *,jpg files
  • Fourth part -mtime gets how many days the files older then will be listed. +30 is for files older then 30 days.
  • Fifth part -exec executes a command. In this case rm is the command, {} gets the filelist and \; closes the command

Move command

find /path/to/files/ -type f -name '*.jpg' -mtime +30 -exec mv {} /path/to/archive/ \;

Explanation

  • First part is the path where your files are located. Don’t use wildcard * if you have a lot of files because you will get Argument list too long error.
  • Second part -type is the file type f stands for files
  • Third part -name is limiting *,jpg files
  • Fourth part -mtime gets how many days the files older then will be listed. +30 is for files older then 30 days.
  • Fifth part -exec executes a command. In this case mv is the command, {} gets the filelist, path where to move the files and \; closes the command