]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
add commands: kill, test
authorCédric Aguerre <cedric.aguerre@edf.fr>
Mon, 16 Feb 2015 10:05:46 +0000 (11:05 +0100)
committerCédric Aguerre <cedric.aguerre@edf.fr>
Tue, 17 Mar 2015 16:33:44 +0000 (17:33 +0100)
add commands: kill, test

typo

bin/salomeContext.py

index 848f27cbd533b3aebb275db2f17f6c0958749e6b..2de4ed8bb5530435716d8e5783ea6a5d8532fe31 100644 (file)
@@ -40,18 +40,18 @@ Usage: salome [command] [options] [--config=<file,folder,...>]
 
 Commands:
 =========
-    start         Starts a SALOME session (through virtual application)
-    context       Initializes SALOME context.
-    shell         Initializes SALOME context, and executes scripts passed
-                  as command arguments
-    connect       Connects a Python console to the active SALOME session
+    start           Starts a SALOME session (through virtual application)
+    context         Initializes SALOME context.
+    shell           Initializes SALOME context, and executes scripts passed
+                    as command arguments
+    connect         Connects a Python console to the active SALOME session
     kill <port(s)>  Terminate SALOME session running on given ports for current user
                     Port numbers must be separated by blank characters
-    killall       Kill all SALOME running sessions for current user
+    killall         Kill *all* SALOME running sessions for current user
     test            Run SALOME tests.
-    info          Display some information about SALOME
-    help          Show this message
-    coffee        Yes! SALOME can also make coffee!!
+    info            Display some information about SALOME
+    help            Show this message
+    coffee          Yes! SALOME can also make coffee!!
 
 If no command is given, default to start.
 
@@ -213,9 +213,9 @@ class SalomeContext:
     options = args[1:]
 
     availableCommands = {
-      'start' :   '_runAppli',
+      'start'   : '_runAppli',
       'context' : '_setContext',
-      'shell' :   '_runSession',
+      'shell'   : '_runSession',
       'connect' : '_runConsole',
       'kill'    : '_kill',
       'killall' : '_killAll',