diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/cleanup.sh | 5 | ||||
-rwxr-xr-x | tools/gendocs.sh | 5 | ||||
-rwxr-xr-x | tools/spellcheck.sh | 3 |
3 files changed, 13 insertions, 0 deletions
diff --git a/tools/cleanup.sh b/tools/cleanup.sh new file mode 100755 index 00000000..29c243ad --- /dev/null +++ b/tools/cleanup.sh @@ -0,0 +1,5 @@ +#/bin/bash + +mv ledger3.texi keep-ledger3.texi +rm ledger3.* +mv keep-ledger3.texi ledger3.texi
\ No newline at end of file diff --git a/tools/gendocs.sh b/tools/gendocs.sh new file mode 100755 index 00000000..55933b13 --- /dev/null +++ b/tools/gendocs.sh @@ -0,0 +1,5 @@ +#!/bin/bash +echo "===================================== Making Info..." +makeinfo ledger3.texi +echo "===================================== Making PDF..." +texi2pdf ledger3.texi diff --git a/tools/spellcheck.sh b/tools/spellcheck.sh new file mode 100755 index 00000000..ae86a3d6 --- /dev/null +++ b/tools/spellcheck.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +aspell check --mode=texinfo ledger3.texi
\ No newline at end of file |