Added an "attach" alias as promised on the web page.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@156223 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/CommandInterpreter.cpp b/source/Interpreter/CommandInterpreter.cpp
index 4e81407..5555238 100644
--- a/source/Interpreter/CommandInterpreter.cpp
+++ b/source/Interpreter/CommandInterpreter.cpp
@@ -113,6 +113,12 @@
         AddAlias ("q", cmd_obj_sp);
         AddAlias ("exit", cmd_obj_sp);
     }
+    
+    cmd_obj_sp = GetCommandSPExact ("process attach", false);
+    if (cmd_obj_sp)
+    {
+        AddAlias ("attach", cmd_obj_sp);
+    }
 
     cmd_obj_sp = GetCommandSPExact ("process continue", false);
     if (cmd_obj_sp)