annotate doc/interpreter/find-docstring-files.sh @ 14119:94e2a76f1e5a
stable
doc: Final grammarcheck and spellcheck before 3.6.0 release.
* container.txi, aspell-octave.en.pws, expr.txi, vectorize.txi, accumarray.m,
accumdim.m, interpft.m, strread.m, parseparams.m, warning_ids.m, cellfun.cc,
help.cc: grammarcheck and spellcheck docstrings.
author |
Rik <octave@nomad.inbox5.com> |
date |
Thu, 29 Dec 2011 06:05:00 -0800 |
parents |
8d20fb66a0dc |
children |
2fc554ffbc28 |
rev |
line source |
9906
|
1 #! /bin/sh |
|
2 |
|
3 if [ $# -ne 1 ]; then |
|
4 echo "usage: find-docstring-files TOP-SRCDIR" 1>&2 |
|
5 exit 1 |
|
6 fi |
|
7 |
|
8 ## if there is a file in teh build directory tree, assume it is |
|
9 ## the file we are looking for. Otherwise, get the one from the |
|
10 ## source tree. |
|
11 |
|
12 if [ -f "../../scripts/DOCSTRINGS" ]; then |
|
13 echo "../../scripts/DOCSTRINGS" |
|
14 else |
|
15 echo "$1/scripts/DOCSTRINGS" |
|
16 fi |
|
17 |
|
18 if [ -f "../../src/DOCSTRINGS" ]; then |
|
19 echo "../../src/DOCSTRINGS" |
|
20 else |
|
21 echo "$1/src/DOCSTRINGS" |
|
22 fi |