[shell script] 파일의 최신 파일 여부 비교

HYEOB KIM·2022년 4월 18일
0

Shell

목록 보기
14/71

파일의 최신(수정도 포함) 여부를 비교하는 구문은 -nt, -ot가 있습니다.

비교 구문 설명

비교 구문설명
file1 -nt file2file1이 file2 보다 최신 파일인지
file1 -ot file2file1이 file2 보다 오래된 파일인지

코드 실습

$ cat test1
#!/bin/bash
if [ test1 -nt test2 ]
then
	echo "test1 is newer than test2"
else
	echo "test2 is newer than test1"
fi
$ cat test1
#!/bin/bash
if [ test1 -ot test2 ]
then
	echo "test1 is older than test2"
else
	echo "test2 is older than test1"
fi
profile
Devops Engineer

0개의 댓글