# unix 날짜를 제어하는 방법
toDayValue=`date +%Y%m%d`
todayYearValue=`date +%Y`
todayMonthValue=`date +%m`
todayDayValue=`date +%d`
# 한국의 표준시는 KST-9
# 하루전 일자는 KST-9+24 = KST+15
# 이틀전 일자는 KST-9+24+24 = KST+39
# 하루전
yesterDayValue=`TZ=KST+15; date +%Y%m%d`
=====================================
# linux -1 day or -1 days -는 과거 + 는 미래
yesterDayValue=`date -d "+1 day" "+%Y%m%d"`
date -d '1 second ago' 1초 전
date -d '1 hour ago' 1시간 전
date -d 'yesterday' 어제
date -d '1 month ago' 1달 전
date -d '1 year ago' 1년 전
date -d 'last monday' 지난 월요일
date -d '1 second ' 1초 후
date -d '1 hour ' 1시간 후
date -d 'tomorrow' 내일
date -d '1 day' 내일
date -d '1 month' 1달 후
date -d '1 year ' 1년 후
date -d 'next monday' 다음주 월요일
2020.12.14 IIS 정당한 사용자가 AD 인증이 이루어지지 않고 계속 아이디와 암호를 IIS에서 확인 하고자 하는 경우 (0) | 2020.12.14 |
---|---|
2020.12.11 SSH Key ssh-keygen (0) | 2020.12.11 |
2020.12.11 sftp shell script expect automation (0) | 2020.12.11 |
2020.11.30 umask 란 unix ,linux 에서 file이나 directory 생성 할 때 기본 권한을 주는 방법(접근 제어 방법 umask ) (0) | 2020.11.30 |
2020.11.27 file descriptor 수를 확인 하는 방법 (0) | 2020.11.27 |
댓글 영역