fish-shell/share/functions/__fish_print_interfaces.fish
2017-01-18 15:44:28 -08:00

8 lines
295 B
Fish

function __fish_print_interfaces --description "Print a list of known network interfaces"
if test -d /sys/class/net
set -l interfaces /sys/class/net/*
string replace /sys/class/net/ '' $interfaces
else # OSX/BSD
command ifconfig -l | string split ' '
end
end