7 lines
180 B
Bash
7 lines
180 B
Bash
#!/bin/bash
|
|
cd /opt/weval-l99
|
|
python3 -u l99-master.py > logs/last-run.log 2>&1
|
|
python3 -u l99-batch.py >> logs/last-run.log 2>&1
|
|
echo DONE > logs/STATUS
|
|
date >> logs/last-run.log
|