Browse Source

remove unneccessary interface check

#146
Patrick Pachur 6 years ago
parent
commit
2105ff1bfa
  1. 9
      home.admin/00infoBlitz.sh

9
home.admin/00infoBlitz.sh

@ -53,13 +53,8 @@ else
fi
# get network traffic
if ifconfig | grep -q "eth0"; then
network_interface="eth0"
else
network_interface="wlan0"
fi
network_rx=$(ifconfig ${network_interface} | grep 'RX packets' | awk '{ print $6$7 }' | sed 's/[()]//g')
network_tx=$(ifconfig ${network_interface} | grep 'TX packets' | awk '{ print $6$7 }' | sed 's/[()]//g')
network_rx=$(ifconfig eth0 | grep 'RX packets' | awk '{ print $6$7 }' | sed 's/[()]//g')
network_tx=$(ifconfig eth0 | grep 'TX packets' | awk '{ print $6$7 }' | sed 's/[()]//g')
# Bitcoin blockchain
btc_path=$(command -v ${network}-cli)

Loading…
Cancel
Save