[Unix/Linux] find 명령어
·
OS_Linux&Unix
[Find] 1) find / -atime +n: n일동안 access가 일어나지 않은 file find / -atime -n: n일동안 access가 일어난 file ex) $ find / -atime +3 ex) $ find / -atime -3 2) find / -mtime +n: n일동안 modify가 일어나지 않은 file find / -mtime -n: n일동안 modify가 일어난 file 3) find / -size +size크기c : file size가 size크기 이상인 file find / -size -size크기c : file size가 size크기 이하인 file ex)$ find / -size +1000c 4) find / -user root: 소유자가 root인 file을 찾아..