diff options
author | Karl Berry <karl@freefriends.org> | 2006-10-19 00:24:47 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-10-19 00:24:47 +0000 |
commit | 4888ceffcebbbff65e9dfd805b5c062a4990ce18 (patch) | |
tree | 5b90a4164fbff80e4c4b7e722975a0dbd7d99650 /Master/texmf-dist/doc/latex/songbook/mksbadx | |
parent | ff920c7e23a7b1736eef9cb4ad2304a859cd0db8 (diff) |
songbook 4.2 update (17oct06)
git-svn-id: svn://tug.org/texlive/trunk@2351 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/songbook/mksbadx')
-rw-r--r-- | Master/texmf-dist/doc/latex/songbook/mksbadx | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/songbook/mksbadx b/Master/texmf-dist/doc/latex/songbook/mksbadx new file mode 100644 index 00000000000..2a9f3b17242 --- /dev/null +++ b/Master/texmf-dist/doc/latex/songbook/mksbadx @@ -0,0 +1,50 @@ +#!/bin/sh +##### rcsid = @(#)$Id: mksbkdx,v 1.10 2003/08/19 23:30:36 christopher Exp $ +##### +## +## mksbadx - Produce a songbook style .adx file from a .aIdx file. +## +## Version 4.2, 13 October, 2006 +## +## Copyright 1992--2006 Christopher Rath <christopher@rath.ca> +## +## This package is free software; you can redistribute it and/or +## modify it under the terms of version 2.1 of the GNU Lesser +## General Public License as published by the Free Software +## Foundation. +## +## This package is distributed in the hope that it will be +## useful, but WITHOUT ANY WARRANTY; without even the implied +## warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +## PURPOSE. See the GNU Lesser General Public License for more +## details. +## +## Take a .aIdx file produced by one of the songbook styles and +## turn it into a .adx file for final formatting into an index +## of songs by key. +## +##### +##### + +### +# Check that the proper parameters were input. +### +if [ "$1" = "" ] +then + echo USAGE: $0 jobname +fi + +### +# Call makeindex to do the required munging. +## +makeindex -s songbook.ist -o $1.adx $1.aIdx + +### +# Tell the user what the new filename is. +### +echo " " +echo "The new Index file is called \`$1.adx'." + +### +# End of script. +### |