You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
396 B
Bash
21 lines
396 B
Bash
#!/bin/sh
|
|
#!/usr/bin/expect -f
|
|
|
|
if [ $# -lt 4 ]
|
|
then
|
|
echo "Usage : `basename $0` [DATE] [FILE_NAME] [START_TIME] [END_TIME]"
|
|
echo "Example: `basename $0` 20200416 queue0101.log 070000 073000"
|
|
exit
|
|
fi
|
|
|
|
echo "Retry Queue Process Start!!"
|
|
|
|
DATE=$1
|
|
FILE=$2
|
|
STIME=$3
|
|
ETIME=$4
|
|
|
|
/app/tcs/GREEN_LANE/bin/proc_queue -d $DATE -f $FILE -s $STIME -e $ETIME
|
|
|
|
echo "Retry Queue Process Complete!!"
|