2006-09-04 10:26:34 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2008-12-06 13:41:07 +01:00
|
|
|
CWD=`pwd`
|
|
|
|
|
|
|
|
if [ `basename $CWD` != "bin" ]
|
|
|
|
then
|
|
|
|
echo $0 must be called from the bin subdirectory
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2006-09-04 10:26:34 +02:00
|
|
|
(allcreate.aux $0 $* 2>&1) | /usr/bin/tee ../script.log
|