Sometimes you want a quick way to verify all ethernet network adapters that are seen by the kernel at boot time. I find going directly to the pseudo filesystem is the fastest.
For example.
# ls /sys/class/net|egrep -v "^vir|^lo|^wl"
enp1s0
Similarly, you an modify the egrep accordingly if you want to view wifi and ethernet adapters and exclude any bridge or virtual adapters
# ls /sys/class/net|egrep -v "^v|^b|lo"
eno1
wlp3s0