2007-09-21 20:52:12 +00:00
|
|
|
function __fish_print_interfaces --description "Print a list of known network interfaces"
|
2016-11-28 05:27:22 +00:00
|
|
|
if test -d /sys/class/net
|
2023-04-25 19:13:57 +00:00
|
|
|
path basename /sys/class/net/*
|
2016-11-28 05:27:22 +00:00
|
|
|
else # OSX/BSD
|
2017-12-11 14:16:52 +00:00
|
|
|
set -l os (uname)
|
2020-03-09 18:36:12 +00:00
|
|
|
if string match -e -q BSD -- $os
|
2017-12-11 14:16:52 +00:00
|
|
|
command ifconfig | string match -e -r '^[a-z]' | string replace -r ':.*' '' | string split ' '
|
|
|
|
else
|
|
|
|
command ifconfig -l | string split ' '
|
|
|
|
end
|
2016-11-28 05:27:22 +00:00
|
|
|
end
|
2007-09-21 20:52:12 +00:00
|
|
|
end
|