#!/bin/bash
Path_to_your_Cathare_version=/export/home/catA/rp233440/01-Dev/c3/cxx/depot1/cathare3_install_NS
for pipe in ` cat liste_pipe`
do
mkdir $pipe
cd $pipe
ln -s ../*.dat .
$Path_to_your_Cathare_version/init_c3.sh
./cathar.unix $pipe.dat $pipe.list &
cd ..
done
exit