2024-06-14 19:48:50 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-08-21 22:47:35 +02:00
|
|
|
# Copyright (c) 2022-2024 olli
|
|
|
|
#
|
|
|
|
# This file is part of dabo (crypto bot).
|
|
|
|
#
|
|
|
|
# dabo is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# dabo is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with dabo. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-06-14 19:48:50 +02:00
|
|
|
. /dabo/dabo-prep.sh
|
|
|
|
|
2024-07-29 20:09:41 +02:00
|
|
|
sleep 1800
|
2024-06-14 19:48:50 +02:00
|
|
|
while true
|
|
|
|
do
|
2024-07-27 17:44:29 +02:00
|
|
|
g_echo_note "Next loop"
|
2024-06-14 19:48:50 +02:00
|
|
|
transactions_overview
|
|
|
|
sleep 3600
|
|
|
|
done
|
|
|
|
|