mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00:00
4 lines
142 B
Fish
4 lines
142 B
Fish
|
function __fish_print_interfaces --description "Print a list of known network interfaces"
|
||
|
netstat -i -n -a | awk 'NR>2'|awk '{print $1}'
|
||
|
end
|