Strip all newlines from ifconfig output

pull/22/head
Dominik Ritter 6 years ago
parent fef639eb48
commit 1049bca473

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

Loading…
Cancel
Save