]> SALOME platform Git repositories - modules/adao.git/commitdiff
Salome HOME
Correcting Bash launching advanced example
authorJean-Philippe ARGAUD <jean-philippe.argaud@edf.fr>
Wed, 8 Apr 2015 19:26:49 +0000 (21:26 +0200)
committerJean-Philippe ARGAUD <jean-philippe.argaud@edf.fr>
Wed, 8 Apr 2015 19:26:49 +0000 (21:26 +0200)
doc/en/advanced.rst
doc/fr/advanced.rst

index 2d5c2ab537ad6f53be0e27f59fd382482f61fdb0..3671f88c6d47a9be652c6622c7a89b06186d25ca 100644 (file)
@@ -60,13 +60,11 @@ between these symbols ``<...>``.
 The template of the shell script is the following::
 
     #!/bin/bash
-    export USERDIR=<ADAO JDC file directory>
-    export SALOMEDIR=<SALOME main installation directory>
+    USERDIR=<ADAO JDC file directory>
+    SALOMEDIR=<SALOME main installation directory>
     $SALOMEDIR/salome start -k -t
-    $SALOMEDIR/salome shell python \
-        $SALOMEDIR/bin/salome/AdaoYacsSchemaCreator.py \
-        $USERDIR/<ADAO Python file> $USERDIR/<ADAO YACS xml scheme>
-    $SALOMEDIR/salome shell driver $USERDIR/<ADAO YACS xml scheme>
+    $SALOMEDIR/salome shell -- "python $SALOMEDIR/bin/salome/AdaoYacsSchemaCreator.py $USERDIR/<ADAO Python file> $USERDIR/<ADAO YACS xml scheme>"
+    $SALOMEDIR/salome shell -- "driver $USERDIR/<ADAO YACS xml scheme>"
     $SALOMEDIR/salome shell killSalome.py
     rm -f $USERDIR/<ADAO YACS xml scheme>
 
index 85c900cd79f3b904fceed0651520fe759813cffe..9ee07d157e87541ade7e5af21418e33f94e5777a 100644 (file)
@@ -64,13 +64,11 @@ script a seulement besoin de remplacer le texte contenu entre les symboles
 Le modèle "type" de ce script de commandes shell est le suivant::
 
     #!/bin/bash
-    export USERDIR=<Répertoire du fichier JDC ADAO>
-    export SALOMEDIR=<Répertoire principal d'installation de SALOME>
+    USERDIR=<Répertoire du fichier JDC ADAO>
+    SALOMEDIR=<Répertoire principal d'installation de SALOME>
     $SALOMEDIR/salome start -k -t
-    $SALOMEDIR/salome shell python \
-        $SALOMEDIR/bin/salome/AdaoYacsSchemaCreator.py \
-        $USERDIR/<Fichier Python ADAO> $USERDIR/<Schéma xml YACS ADAO>
-    $SALOMEDIR/salome shell driver $USERDIR/<Schéma xml YACS ADAO>
+    $SALOMEDIR/salome shell -- "python $SALOMEDIR/bin/salome/AdaoYacsSchemaCreator.py $USERDIR/<Fichier Python ADAO> $USERDIR/<Schéma xml YACS ADAO>"
+    $SALOMEDIR/salome shell -- "driver $USERDIR/<Schéma xml YACS ADAO>"
     $SALOMEDIR/salome shell killSalome.py
     rm -f $USERDIR/<Schéma xml YACS ADAO>