mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
7cfe8feb88
git-svn-id: https://cppannotations.svn.sourceforge.net/svnroot/cppannotations/trunk@167 f6dd340e-d3f9-0310-b409-bdd246841980
11 lines
184 B
Bash
Executable file
11 lines
184 B
Bash
Executable file
#!/bin/sh
|
|
|
|
CWD=`pwd`
|
|
|
|
if [ `basename $CWD` != "bin" ]
|
|
then
|
|
echo $0 must be called from the bin subdirectory
|
|
exit 1
|
|
fi
|
|
|
|
(allcreate.aux $0 $* 2>&1) | /usr/bin/tee ../script.log
|