본문 바로가기

Linux & Unix

linux command - stat , statx (file timestamps)

stat
파일의 timestamp 확인
- atime : Access. ls -lu
- mtime : 내용 수정. ls -l (default)
- ctime : inode 변경. ls -lc

stat <file>
ls --time-style=long-iso -lu <file>
ls --time-style=long-iso -l <file>
ls --time-style=long-iso -lc <file>

statx
- btime (birth, creation timestamp) 정보가 표시
- kernel 4.11 에 추가됨. ( kernel 4.18 인 RHEL 8 부터 사용 가능해 보임 )
- glibc 2.28 에서 라이브러리 지원 추가