#!/usr/bin/env zsh

function list_interfaces {
	ip link show | grep -vE '^ ' | get_cols -F ':' 2 | xargs -n 1
}

list_interfaces
