[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을 찾아라!
5) finf / -name .profile: 파일의 이름이 .profile을 찾아라!
6) find / -type d: directory를 찾아라.
f: regular file
b: block device file
c: character device file
매우 명쾌하여 긁어왔습니다...!
출처 : 와스고수
https://blog.naver.com/kletgdgo
'OS > Linux&Unix' 카테고리의 다른 글
[Unix/Linux] 리눅스 쉘에 절대경로 표시하기 (0) | 2022.09.15 |
---|---|
[Unix/Linux] 모든 사용자에게 권한을 부여하기 / sudoers (0) | 2022.09.14 |
[Linux/Unix] kill 명령어 (feat. ps 명령어) (0) | 2022.09.05 |
Windows OS 와 Linux OS 의 Super user (0) | 2022.09.02 |
[Unix/Linux] [AIX] topas 명령어 / CPU, MEMORY, DISK 확인 (0) | 2022.09.02 |