#!/bin/bash

COMMANDS="mount;df -h;cat /etc/issue;cat /etc/hosts;cat /etc/fstab;ps faxu;netstat -ntlpu;ifconfig -a;ip link;free -m;uptime;uname -a;dpkg -l;env;showmount -e;showmount -a;crontab -l;ls -la /etc/cron.d;ls -la /etc/cron.hourly;ls -la /etc/cron.daily;ls -la /etc/cron.weekly;cat /etc/resolv.conf;route -n;lspci;cat /etc/shadow;cat /etc/passwd"

IFS=';'
for command in $COMMANDS
do
	echo "OUTPUT INFO FOR "$command
	echo "--------------------------------"
	eval $command
	echo
	echo
done
