티스토리 뷰
반응형
- 로그 파일에서 변수로 날짜와 배포ID를 받아 배포 결과를 조회하는 스크립트
- shell : ksh
- 변수 : yyyymmdd, 배포ID
#!/bin/ksh
# Check if the number of arguments is correct
if [ $# -ne 2 ]; then
echo "[Usage] : deploy_chk.sh yyyymmdd ID or deploy_chk.sh ID yyyymmdd"
exit 1
fi
# Function to check if the argument is a date
is_date() {
case $1 in
[0-9][0-9][0-9][0-9][0-1][0-9][0-3][0-9]) return 0 ;;
*) return 1 ;;
esac
}
# Check and assign the date and ID based on the input
if is_date $1; then
date=$1
id=$2
elif is_date $2; then
date=$2
id=$1
else
echo "Invalid input. Please provide a date in yyyymmdd format and an ID."
exit 1
fi
# Extract year, month, and day from the date
Y_day=$(echo $date | cut -c 1-4)
M_day=$(echo $date | cut -c 5-6)
D_day=$(echo $date | cut -c 7-8)
# Check if the log file exists and then search for the ID and "결과"
log_file="/LOGS/klaf/.../webadmin.log.${Y_day}-${M_day}-${D_day}"
if [ -f $log_file ]; then
grep "$id" $log_file | grep "결과"
else
echo "Check Day or ID"
exit 1
fi
반응형
'Architecture > WAS' 카테고리의 다른 글
[Webtob] SSL 프로토콜 취약점 조치 (0) | 2024.04.24 |
---|---|
[JEUS] dsa를 이용해 jeusadmin 간편하게 실행하기 (0) | 2024.03.13 |
[JEUS] & [Websphere] 재기동 및 status 명령어 (0) | 2024.03.13 |
[Tomcat] catalina.out 날짜별 분기 작업(feat. rotatelog) (0) | 2024.02.27 |
[JEUS] The server shutdown failed and a timeout occurred. shutdown timeout[120000 ms] 원인 분석과 해결방안 (1) | 2024.01.01 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- NLU
- 항해99
- JWT
- 글또
- Comparable
- 취업리부트코스
- 취리코
- 유데미
- 자바
- BufferedReader
- 코딩테스트
- 재기동
- dxdy
- 개발자취준
- 나만의챗봇
- 회고록
- Java
- 전자정부프레임워크
- 챗봇
- thymeleaf
- 백준
- springboot
- script
- Comparator
- 코드트리
- BFS
- Spring
- RASA
- 객체정렬
- BufferedWriter
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함
반응형