mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-08 02:31:18 -03:00
parse *BSD interface names
This commit is contained in:
committed by
Fabian Homborg
parent
db0ff0bcde
commit
440df37b41
@@ -3,6 +3,11 @@ function __fish_print_interfaces --description "Print a list of known network in
|
||||
set -l interfaces /sys/class/net/*
|
||||
string replace /sys/class/net/ '' $interfaces
|
||||
else # OSX/BSD
|
||||
command ifconfig -l | string split ' '
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user