#! /bin/env bash clear echo -e "====== TCP PORT ======" lsof -nPi | grep LISTEN | sort -t ":" -k 2,2n echo -e "\n====== UDP PORT ======" lsof -nPi | grep UDP | sort -t ":" -k 2,2n echo -e "\n====== Contab ======" crontab -l echo -e "\n====== Home Dir ======" ls -al /home echo -e ""