[shell script] 파일의 최신 파일 여부 비교
712 단어 shell scriptshell script
파일의 최신(수정도 포함) 여부를 비교하는 구문은
-nt
,-ot
가 있습니다.
비교 구문 설명
비교 구문 | 설명 |
---|---|
file1 -nt file2 | file1이 file2 보다 최신 파일인지 |
file1 -ot file2 | file1이 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
Author And Source
이 문제에 관하여([shell script] 파일의 최신 파일 여부 비교), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@khyup0629/shell-script-파일의-최신-파일-여부-비교저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)