From d79f2e69fb5160cd9d98d77679c14d869ee16016 Mon Sep 17 00:00:00 2001 From: Cryptoval Trading Technologies Date: Tue, 20 May 2025 20:25:53 +0000 Subject: [PATCH] added empty lines for readability --- healthcheck/md/crypto_md_chcklst.sh | 6 ++++-- healthcheck/md/eqty_md_chcklst.sh | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/healthcheck/md/crypto_md_chcklst.sh b/healthcheck/md/crypto_md_chcklst.sh index becbf28..f3522a6 100755 --- a/healthcheck/md/crypto_md_chcklst.sh +++ b/healthcheck/md/crypto_md_chcklst.sh @@ -36,9 +36,11 @@ run_checklist() { for name in $(printf "%s\n" "${!Commands[@]}" | sort); do Cmd=${Commands[${name}]} - echo "------- ${name}" - echo ${Cmd} + echo "---------------------- ${name}" + echo ${Cmd} + echo eval ${Cmd} + echo done } diff --git a/healthcheck/md/eqty_md_chcklst.sh b/healthcheck/md/eqty_md_chcklst.sh index 322bc0c..e0e26ff 100755 --- a/healthcheck/md/eqty_md_chcklst.sh +++ b/healthcheck/md/eqty_md_chcklst.sh @@ -28,14 +28,12 @@ run_checklist() { for sym in ${CheckSymbols}; do Commands["hs01"]+="ssh cvtt@hs01.cvtt.vpn ls -l /works/cvtt/md_archive/equity/alpaca_md/${yr}/${sym} | tail -3; " done - Commands["hs01"]+="echo" Commands["hs01:sim"]="ssh cvtt@hs01.cvtt.vpn ls -l /works/cvtt/md_archive/equity/alpaca_md/sim | tail -5" Commands["cloud21"]="" for sym in ${CheckSymbols}; do Commands["cloud21"]+="ssh cvtt@cloud21.cvtt.vpn ls -l /works/cvtt/md_archive/equity/alpaca_md/${yr}/${sym} | tail -3; " done - Commands["cloud21"]+="echo" Commands["cloud21:sim"]="ssh cvtt@cloud21.cvtt.vpn ls -l /works/cvtt/md_archive/equity/alpaca_md/sim | tail -5" Commands["gpushnik"]="ssh oleg@gpushnik.cvtt.vpn 'ls -l /opt/jupyter_gpu/data/eqty_md | tail -10'" @@ -44,7 +42,9 @@ run_checklist() { echo "------- ${name}" Cmd=${Commands[${name}]} echo ${Cmd} + echo eval ${Cmd} + echo done }