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