Subversion Repositories wimsdev

Rev

Rev 3877 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
795 bpr 1
#! /bin/sh
2
##Script to use some programs for a bioinfo module. 
3
 
4
echo "$wims_exec_parm" > $tmp_dir/test
5
 
6
[ -s $tmp_dir/test ] || exit
7
 
8
ulimit -f 64
9
a="$wims_exec_parm"
10
 
11
SUCCES=0
12
grep -q "C_etat_civil.o" $tmp_dir/test
13
if [ $? -eq $SUCCES ]
14
then
15
	bin/ch..root C_etat_civil.o $a
16
fi
17
SUCCES=0
18
grep -q "test_cond.o" $tmp_dir/test
19
if [ $? -eq $SUCCES ]
20
then
21
	bin/ch..root test_cond.o $a
22
fi
23
SUCCES=0
24
grep -q "tab1d.o" $tmp_dir/test
25
if [ $? -eq $SUCCES ]
26
then
27
	bin/ch..root tab1d.o $a
28
fi
29
 
30
SUCCES=0
31
grep -q "tab2d.o" $tmp_dir/test
32
if [ $? -eq $SUCCES ]
33
then
34
  bin/ch..root tab2d.o $a
35
fi
36