mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:29:43 +08:00
13 lines
440 B
Fish
13 lines
440 B
Fish
function __fish_print_interfaces --description "Print a list of known network interfaces"
|
|
if test -d /sys/class/net
|
|
path basename /sys/class/net/*
|
|
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 ' '
|
|
end
|
|
end
|
|
end
|