aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_print_interfaces.fish
blob: cf100056ca3848db52126ac7cdac301f90370687 (plain)
1
2
3
function __fish_print_interfaces --description "Print a list of known network interfaces"
	netstat -i -n -a | awk 'NR>2'|awk '{print $1}'
end