Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
e4229a2938668b6e9b336861b383b8bbb4f4914b
/
.
/
doc
/
lisp_reference
/
all-functions-present.sh
blob: b2623ab5fa949605b26442249c206362fe72b6dd [
file
] [
log
] [
blame
]
#!/bin/sh
# Prints a list of the functions that are not yet documented.
../../
src
/
lisp
/
lisp all
-
functions
.
lisp
|
while
read
-
r fun
do
if
grep
"$fun"
lisp_reference
.
tex
>
/
dev
/
null
;
then
# nothing
true
else
echo
"$fun"
fi
done