Added a function to get your public IP address

This commit is contained in:
Robert R Evans
2010-10-02 15:23:57 -07:00
parent 1081b7b2e0
commit 070107ab95
5 changed files with 19 additions and 23 deletions

View File

@@ -14,4 +14,8 @@ export HISTCONTROL=erasedups
export HISTSIZE=5000
export AUTOFEATURE=true autotest
export AUTOFEATURE=true autotest
function rh {
history | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head
}