반응형
month=`date +%m`
year=`date +%Y`
real_month=`expr $month + 2`
if [ $real_month -gt 9 ]
then
if [ $real_month -gt 12 ]
then
# 년도 증가
year=`expr ${year} + 1`
# 월에서 -12
real_month=`expr ${real_month} - 12`
real_month=${year}0${real_month}
else
real_month=${year}${real_month}
fi;
else
real_month=${year}0${real_month}
fi;
echo $real_month
반응형
'OS > AIX' 카테고리의 다른 글
inittab 설정하기 (0) | 2009.10.19 |
---|---|
시스템별 CPU 개수 조회하기 (0) | 2009.07.07 |
AIX 자주 쓰이는 관리 명령 모음(펌) (0) | 2009.03.11 |
파일들이 너무 많이 ls -l 이 제대로 동작하지 않을 때.... (0) | 2009.03.05 |
awk 프로그래밍 (0) | 2009.03.05 |