#!/bin/sh #---------------------------------------------------------------------------- # /var/install/bin/hwdiag-list - Show hardware list # # Creation: 2004-07-03 jv # Last Update: $Id$ # # Copyright (c) 2004 Jens Vehlhaber, jvehlhaber(at)buchenwald(dot)de # Copyright (c) 2014-@@YEAR@@ the eisfair team, team(at)eisfair(dor)org # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. #---------------------------------------------------------------------------- # include eislib . /var/install/include/eislib clrhome echo mecho --info "You can find more informations about inxi in the documentation." mecho --info "We are using here the output of '/usr/bin/inxi -F'." echo /usr/bin/inxi -F echo anykey exit 0 # --------------------------------------------------------------------------- # end # ---------------------------------------------------------------------------