Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
dividing by 0 is not always the best possible choice, even if the user shoulnt give...
[simgrid.git] / src / smpi / smpirun.in
index 7f1407b..9dfb521 100755 (executable)
@@ -169,7 +169,7 @@ while true; do
             ;;
 
         "-version" | "--version" | "-v")
-            echo -e $SIMGRID_VERSION
+            printf '%b\n' "$SIMGRID_VERSION"
             exit 0
             ;;
 
@@ -350,7 +350,11 @@ fi
 for i in ${SEQ}
 do
     if [ -n "${HOSTFILE}" ]; then
-       j=$(( $i % ${NUMHOSTS} + 1 ))
+        if [ ${NUMHOSTS} = 0 ] ; then
+          j= 0
+       else
+          j=$(( $i % ${NUMHOSTS} + 1 ))
+       fi
     fi
     ##---- optional display of ranks to process mapping
     if [ -n "${MAPOPT}" ]; then