#!/bin/bash

hwdetect_network()
{
	# check available network devices
	local network_check=$(find /sys/class/net/* -not -name lo -printf "%f ")
	printhl "Available network devices: ${network_check}" 
}
