tweak to bashrc

This commit is contained in:
brent s. 2015-01-18 00:06:51 -05:00
parent 0162513827
commit 3a5914faca
1 changed files with 10 additions and 4 deletions

View File

@ -43,15 +43,21 @@ PS1='[\u@\h \W]\$ '
export HISTTIMEFORMAT="%F %T "
export PATH="${PATH}:/sbin:/bin:/usr/sbin"

DEFROUTEIF=$(ip route show | egrep '^default' | awk '{print $5}')

echo
echo "==================================="
date
if [ -n "${DEFROUTEIF}" ];
then
echo
echo -n "${DEFROUTEIF} is: "
ifconfig "${DEFROUTEIF}" | egrep 'inet|ether' | grep -v "inet6" | awk '{print $2}'
fi
echo
echo "eth0 is:"
ifconfig eth0 | egrep 'inet|ether' | grep -v "inet6" | awk '{print $2}'
echo
echo "tun0 is:"
echo -n "tun0 is:"
ifconfig tun0 | grep inet | grep -v "inet6" | awk '{print $2}'
echo
echo "http://bdisk.square-r00t.net/"
echo "==================================="
echo