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.
14 lines
206 B
Bash
14 lines
206 B
Bash
|
10 months ago
|
#!/bin/bash
|
||
|
|
#!/usr/bin/expect -f
|
||
|
|
if [ $# -lt 1]
|
||
|
|
then
|
||
|
|
echo "I Hope your input. [WORK_DATE]"
|
||
|
|
exit
|
||
|
|
fi
|
||
|
|
|
||
|
|
WORK_DATA=$1
|
||
|
|
|
||
|
|
java -jar /gpta/source-app/cfs/relay_jar/make_prp_bin.jar 1 20000000000000 $WORK_DATA &
|
||
|
|
|
||
|
|
|