mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
10 lines
233 B
Fish
10 lines
233 B
Fish
function __fish_print_interfaces --description "Print a list of known network interfaces"
|
|
if test -d /sys/class/net
|
|
cd /sys/class/net
|
|
for i in *
|
|
echo $i
|
|
end
|
|
else # OSX/BSD
|
|
command ifconfig -l | string split ' '
|
|
end
|
|
end
|