-
Notifications
You must be signed in to change notification settings - Fork 3
/
launchgefs
executable file
·33 lines (22 loc) · 893 Bytes
/
launchgefs
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
#!/bin/ksh --login
echo 'into'
source /u/Alicia.Bentley/.bashrc
cyc=$1
mkdir -p /gpfs/dell1/stmp/Alicia.Bentley
mkdir -p /gpfs/dell1/stmp/Alicia.Bentley/gefs
cd /gpfs/dell1/stmp/Alicia.Bentley/gefs
year=`cut -c 1-4 holddate.txt`
month=`cut -c 5-6 holddate.txt`
day=`cut -c 7-8 holddate.txt`
hour=`cut -c 9-10 holddate.txt`
dow=`cut -c 11-13 holddate.txt`
ymdh=${year}${month}${day}${hour}
ymdhdow=${year}${month}${day}${hour}${dow}
python /gpfs/dell2/emc/verification/save/Alicia.Bentley/gefs/makegefs2mtcsv.py $ymdh &
python /gpfs/dell2/emc/verification/save/Alicia.Bentley/gefs/makegefsslpcsv.py $ymdh &
python /gpfs/dell2/emc/verification/save/Alicia.Bentley/gefs/makegefs2mdewcsv.py $ymdh &
python /gpfs/dell2/emc/verification/save/Alicia.Bentley/gefs/makegefscapecsv.py $ymdh &
wait
cp /gpfs/dell2/emc/verification/save/Alicia.Bentley/gefs/edit_gefs.ksh .
./edit_gefs.ksh
exit