1
0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-12-12 19:18:28 +02:00

Interface States can be unsorted

This commit is contained in:
Dominik Ritter 2019-02-21 18:32:17 +01:00
parent 9f9bc62dc9
commit 1ab6a32c4b

View File

@ -405,9 +405,13 @@ function p9k::parseIp() {
continue
fi
# Check if interface is UP.
if [[ "${interface/${newline}/}" =~ "<UP(,)?[^>]*>(.*)inet[ ]+([^ ]*)" ]]; then
echo "${match[3]}"
return 0
if [[ "${interface/${newline}/}" =~ "<([^>]*)>(.*?)inet[ ]+([^ ]*)" ]]; then
local ipFound="${match[3]}"
local -a interfaceStates=(${(s:,:)match[1]})
if [[ "${interfaceStates[(r)UP]}" == "UP" ]]; then
echo "${ipFound}"
return 0
fi
fi
done
else