Adding a new convenience alias and fixing auto-complete for onos-create-app.

Change-Id: Iad76a2293b5b87176033184d23634d83f21370eb
diff --git a/tools/dev/bash_profile b/tools/dev/bash_profile
index b8244a7..6bab610 100644
--- a/tools/dev/bash_profile
+++ b/tools/dev/bash_profile
@@ -140,11 +140,12 @@
     done
 }
 
-# Miscellaneous
+# Find a process by regex
 function spy {
     ps -ef | egrep "$@" | grep -v egrep
 }
 
+# Kill a process by regex
 function nuke {
     spy "$@" | cut -c7-11 | xargs kill
 }
@@ -186,5 +187,9 @@
     ($apply) && cell ${cdf}
 }
 
-# autocomplete for certain utilities
+# Autocomplete for certain utilities
 . ${ONOS_ROOT}/tools/test/bin/ogroup-opts
+
+
+# Load AT&T MPLS topo GEO data
+alias atttopo='onos-topo-cfg $OCI $ONOS_ROOT/tools/test/topos/attmpls.json'
\ No newline at end of file