system_information.sh 375 Bytes
. utils/file.sh

include_once utils/programs.sh
include_once utils/classes.sh
include_once gatherer/host_information.sh
include_once gatherer/dist_information.sh
include_once gatherer/cpu_information.sh
include_once gatherer/interface_information.sh

gather_information() {
	gather_host_info
	gather_dist_info
	gather_cpu_info
	gather_interface_info
}

# vim: set ts=4 sw=4: