All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fudaa.dodico.reflux.exec.reflux-launch.tpl.sh Maven / Gradle / Ivy

There is a newer version: 2.7
Show newest version
#!/bin/sh
OS=`uname`

#controle des arguments
if [ "$#" != "1" ]
then
  echo "Syntaxe : launcher.sh "
  exit 1
fi

root=$1
echo $root
if [ ! -f $root.inp ]; then
  echo "Erreur : Fichier $root.inp inexistant"
  exit 1
fi

# Suppression des fichiers r?sultats
rm -f $root.out
rm -f $root.sfv
rm -f $root.sov
rm -f $root.sft
rm -f $root.sot

echo "Launching reflux..."

@exe@ << EOF

FICHIER: $root.inp $root.out
EOF




© 2015 - 2024 Weber Informatics LLC | Privacy Policy