-
Notifications
You must be signed in to change notification settings - Fork 0
/
final.sh
27 lines (22 loc) · 2.17 KB
/
final.sh
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
#!/bin/bash
# final performance
# update environmental data every minute and tweet it all
# end the year long performance with increased data flow
now=$(date "+%c")
for I in 1 2 3 4 5 6 7 8 9 10
do
now=$(date "+%c") && tmp=$(python3 app.py --time OUT --climate 2>&1) &&
echo '\t░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░'
echo '\t░░░ Data collected ░░░'
echo '\t░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░' && cd w3py && dataout=$(python3 update.py ${tmp} 2>&1) &&
echo '\t░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░'
echo '\t░░░ Transacted with the blockchain ░░░'
echo '\t░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░' && cd .. && python3 app.py --text "${dataout} !_ final chapter of a year long performance. timestamped: ${now} " --tweet && sleep 2m
now=$(date "+%c") && tmp=$(python3 app.py --time IN --climate 2>&1) &&
echo '\t░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░'
echo '\t░░░ Data collected ░░░'
echo '\t░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░' && cd w3py && dataout=$(python3 update.py ${tmp} 2>&1) &&
echo '\t░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░'
echo '\t░░░ Transacted with the blockchain ░░░'
echo '\t░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░' && cd .. && python3 app.py --text "${dataout} !_ final chapter of a year long performance. timestamped: ${now} " --tweet && sleep 2m
done