blob: cf091486b8fc0d2314510c1d483f7d53981e795a (
plain) (
blame)
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
|
#! /bin/bash
# USE: ./build.sh <pandoc> <pandoc_flags> <pandoc_format> [sources]
pancompile="$1 $2 $3"
panexec="$1"
panflags="$2"
panformat="$3"
sources=${@:4}
echo "using command <${pancompile}>"
echo "for sources: ${sources}"
for src in ${sources}; do
if [ -d ${src} ]; then
printf "\tfound dir: ${src}\n"
if [ "$(find ${src} -name '*.md' | wc -l)" != "1" ]; then
printf "\tToo many files in dir. Won't build. Skipping.\n"
continue
fi
indir_src="$(find ${src} -name '*.md')"
indir_out="${indir_src##*/}"
${panexec} ${panflags} ${indir_src} ${panformat} -o ${indir_out%.*}.html
elif [ -f ${src} ] && [ "${src##*.}" == "md" ]; then
printf "\tfound md file: ${src}\n"
printf "\t${panexec} ${panflags} ${src} ${panformat} -o ${src%.*}.html"
${panexec} ${panflags} ${src} ${panformat} -o ${src%.*}.html
else
echo "unknown source"
exit 1
fi
done
#for lab in $(find . -maxdepth 1 -name "lab*" -type d); do
# echo "Found directory ${lab}"
#done
|