Subversion Repositories wimsdev

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
10184 bpr 1
#! /bin/sh
2
 
3
FILE="wimstest/ALLOEFHTML/index.html"
4
 
5
if [ $1 ]; then
6
 for a in $(seq $#); do file=$1;
7
  echo "$file"
8
  bin/oefcompile test $file
9
  shift
10
 done
11
else
12
  bin/oefcompile test $fi
13
fi
14
 
15
wimstest/diff2html.sh
16
 
17
test=`xdg-open 2>/dev/null`
18
if [ "$test" ]; then
19
  xdg-open $FILE ;
20
  exit
21
fi
22
 
23
test=`open 2>/dev/null`
24
if [ !"$test" ]; then
25
  open $FILE;
26
  exit
27
fi
28