From ad3525c2351ed630f08c7b8b8bed96ef729fe090 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 18 Jan 2014 19:33:53 -0500 Subject: [PATCH] Shell - Changed the external command from 'xc' to '!'. --- src/shell/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell/main.cpp b/src/shell/main.cpp index fcafece3b..244b5e6f3 100644 --- a/src/shell/main.cpp +++ b/src/shell/main.cpp @@ -184,7 +184,7 @@ int main (int argc, const char** argv) } // External calls. - if (strcmp (w[1], "xc") == 0 && p.we_wordc > 2) + if (strcmp (w[1], "!") == 0 && p.we_wordc > 2) { std::string combined = ""; for (int i = 2; i < p.we_wordc - 1 ; ++i)