11 lines
193 B
Plaintext
11 lines
193 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
TARGET=../doc/gramps-manual/C/cmdplug.xml
|
||
|
|
||
|
touch ./junk.grdb
|
||
|
python gramps.py -O ./junk.grdb -a tool -p name=cmdref,include=1,target=$TARGET
|
||
|
chmod +r $TARGET
|
||
|
rm ./junk.grdb
|
||
|
|
||
|
exit 0
|