|
|
@ -12,7 +12,7 @@ info_game.sh |
|
|
|
|
|
|
|
ip_commands_array=("/bin/ip" "/usr/sbin/ip" "ip") |
|
|
|
for ip_command in "${ip_commands_array[@]}"; do |
|
|
|
if [ "$(command -v ${ip_command} 2> /dev/null)" ]; then |
|
|
|
if [ "$(command -v "${ip_command}" 2> /dev/null)" ]; then |
|
|
|
ipcommand="${ip_command}" |
|
|
|
break |
|
|
|
fi |
|
|
@ -20,7 +20,7 @@ done |
|
|
|
|
|
|
|
ethtool_commands_array=("/bin/ethtool" "/usr/sbin/ethtool" "ethtool") |
|
|
|
for ethtool_command in "${ethtool_commands_array[@]}"; do |
|
|
|
if [ "$(command -v ${ethtool_command} 2> /dev/null)" ]; then |
|
|
|
if [ "$(command -v "${ethtool_command}" 2> /dev/null)" ]; then |
|
|
|
ethtoolcommand="${ethtool_command}" |
|
|
|
break |
|
|
|
fi |
|
|
|