From: Cédric Aguerre Date: Mon, 16 Feb 2015 10:05:46 +0000 (+0100) Subject: add commands: kill, test X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=216e26a92485452e0f649a22dd0577e7c3dd6018;p=modules%2Fkernel.git add commands: kill, test add commands: kill, test typo --- diff --git a/bin/salomeContext.py b/bin/salomeContext.py index 848f27cbd..2de4ed8bb 100644 --- a/bin/salomeContext.py +++ b/bin/salomeContext.py @@ -40,18 +40,18 @@ Usage: salome [command] [options] [--config=] 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 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',