mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
9367d4ff71
This does not include checks/function.fish because that currently includes a "; end" in a message that indent would remove, breaking the test.
13 lines
498 B
Fish
13 lines
498 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
|
|
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
|