18 lines
333 B
Bash
18 lines
333 B
Bash
#!/bin/bash
|
|
|
|
d=`date +%Y%m%d`
|
|
|
|
echo "Todays date $d"
|
|
|
|
#mv "missing.mcl" "missing_old.mcl"
|
|
|
|
fromdate=$(ls -1 *_latest.mcl |grep -Eo '[[:digit:]]{8}')
|
|
|
|
echo "Last date run $fromdate"
|
|
|
|
|
|
py -2 "update_missing.py" "$fromdate""_latest.mcl" "$d"".mcl" 9718933c0a3aa4407d6995d0f3bb310f5ee977f2 $fromdate $d
|
|
|
|
cp "$d"".mcl" "$d""_latest.mcl"
|
|
|