parse *BSD interface names
This commit is contained in:
parent
db0ff0bcde
commit
440df37b41
@ -3,6 +3,11 @@ function __fish_print_interfaces --description "Print a list of known network in
|
|||||||
set -l interfaces /sys/class/net/*
|
set -l interfaces /sys/class/net/*
|
||||||
string replace /sys/class/net/ '' $interfaces
|
string replace /sys/class/net/ '' $interfaces
|
||||||
else # OSX/BSD
|
else # OSX/BSD
|
||||||
|
set -l os (uname)
|
||||||
|
if string match -e -q "BSD" -- $os
|
||||||
|
command ifconfig | string match -e -r '^[a-z]' | string replace -r ':.*' '' | string split ' '
|
||||||
|
else
|
||||||
command ifconfig -l | string split ' '
|
command ifconfig -l | string split ' '
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user