forked from oreillymedia/docbook2asciidoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocbook2asciidoc.sh
executable file
·80 lines (67 loc) · 1.48 KB
/
docbook2asciidoc.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/bin/sh
REQUIRED_BASH_VERSION=3.0.0
if [[ $BASH_VERSION < $REQUIRED_BASH_VERSION ]]; then
echo "You must use Bash version 3 or newer to run this script"
exit
fi
DIR=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
convert()
{
CMD="find $SCAN_DIR -name \*.$EXT"
if [ $RECURSE == "0" ]; then
CMD="$CMD -maxdepth 1"
fi
xmls=`eval $CMD`
mkdir -p $OUT_DIR
for xml in $xmls
do
output_filename=${xml/.$EXT/.$OEXT}
echo "Processing $xml -> $output_filename"
CMD="java -jar $DIR/saxon9he.jar -s $xml -o $output_filename $DIR/d2a.xsl"
$CMD
done
}
usage()
{
cat << EOF
usage: $0 options
This script allows primitive batching of docbook to asciidoc conversion
OPTIONS:
-s Source directory to scan for files, by default the working directory
-x Extension of files to convert, by default 'xml'
-o Output extension, by default 'asciidoc'
-r Enable recusive scanning, by default the scan is not recursive
-h Shows this message
EOF
}
SCAN_DIR=`pwd`
RECURSE="0"
EXT="xml"
OEXT="asciidoc"
OUT_DIR="output"
while getopts “hrx:o:s:” OPTION
do
case $OPTION in
s)
SCAN_DIR=$OPTARG
;;
h)
usage
exit
;;
r)
RECURSE="1"
;;
x)
EXT=$OPTARG
;;
o)
OEXT=$OPTARG
;;
[?])
usage
exit
;;
esac
done
convert