]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Fix misprint
authorvsr <vsr@opencascade.com>
Wed, 25 Nov 2020 15:26:29 +0000 (18:26 +0300)
committervsr <vsr@opencascade.com>
Wed, 25 Nov 2020 15:26:29 +0000 (18:26 +0300)
bin/killSalomeWithPort.py

index d0af7b53efacd76cc1c870f6aff958a021545c48..26b959f30701d7b19d6c943b0d6c04680e461c8f 100755 (executable)
@@ -419,10 +419,10 @@ def checkUnkilledProcess():
         cmd = 'ps --noheading -U {user} -o pid,cmd | awk \'{{printf("%s %s\\n", $1, $2)}}\''.format(user=user)
         _getDictfromOutput(subprocess.getoutput(cmd).split(), processes, '^(SALOME_|omniNames)')
         # 2. ghs3d
-        cmd = 'ps -fea | grep \'{user}\' | grep \'ghs3d\' | grep \'f /tmp/GHS3D_\' | grep -v \'grep\' | awk \'{{print("%s %s\\n", $2, $8)}}\''.format(user=user)
+        cmd = 'ps -fea | grep \'{user}\' | grep \'ghs3d\' | grep \'f /tmp/GHS3D_\' | grep -v \'grep\' | awk \'{{printf("%s %s\\n", $2, $8)}}\''.format(user=user)
         _getDictfromOutput(subprocess.getoutput(cmd).split(), processes)
         # 3. ompi-server
-        cmd = 'ps -fea | grep \'{user}\' | grep \'ompi-server\' | grep -v \'grep\' | awk \'{{print("%s %s\\n", $2, $8)}}\''.format(user=user)
+        cmd = 'ps -fea | grep \'{user}\' | grep \'ompi-server\' | grep -v \'grep\' | awk \'{{printf("%s %s\\n", $2, $8)}}\''.format(user=user)
         _getDictfromOutput(subprocess.getoutput(cmd).split(), processes)
     else:
         cmd = 'tasklist /fo csv | findstr /i "SALOME_ omniNames"'