From 3e4333d5225fde118c2e366c9c5b7d15eff20bb1 Mon Sep 17 00:00:00 2001 From: fscarmen <62703343+fscarmen@users.noreply.github.com> Date: Mon, 20 Jun 2022 00:12:56 +0800 Subject: [PATCH] Update port_pure.sh --- port_pure.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/port_pure.sh b/port_pure.sh index afc6a52..80271e3 100644 --- a/port_pure.sh +++ b/port_pure.sh @@ -19,10 +19,9 @@ until [[ $ALL =~ 'TW_1' ]]; do ALL=$(wget -qO- --header="cookie: $TOKEN" https://tcp$STACK.ping.pe/ajax_getPingResults_v2.php?stream_id=$STREAM_ID) done - -echo -e "地方\tISP\t状态" +echo -e "地方\tISP\t\t状态" for ((i=0;i<${#NODE_ID[@]};i++)); do RESULT[i]=$(echo $ALL | python3 -m json.tool | grep -A 2 ${NODE_ID[i]} | grep result | sed "s#[\":, ]##g") RESULT[i]=${RESULT[i]:-'result1'} - echo -e "${NODE_ZH[i]}\t$(eval echo "\$${RESULT[i]}")" + echo -e "${NODE_ZH[i]}\t\t$(eval echo "\$${RESULT[i]}")" done