blob: 226216ce65c41368e393df7c8874a4f60ff9b04e (
plain)
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
|
#!/bin/sh
INPUT_DIR=blog
OUTPUT_DIR=dist
PAGE_TEMPLATE=blog/template.html
while getopts ":o:i:t:" opt; do
case "$opt" in
o)
OUTPUT_DIR=$OPTARG/
mkdir -p $OUTPUT_DIR
OUTPUT_DIR=$(realpath $OUTPUT_DIR)
;;
i)
INPUT_DIR=$(realpath $OPTARG)
;;
t)
PAGE_TEMPLATE=$(realpath $OPTARG)
;;
esac
done
# process a file to
process () {
path="${1#$INPUT_DIR}"
dirpath="${1%${1##*/}}"
out_file="${OUTPUT_DIR}${path}"
[ -d "$1" ] && {
mkdir -p "$out_file"
for f in "$1"/*; do
process "$f"
done
return 0
} || [ -x "$1" ] && {
# execute the file
cd $dirpath
"$1" > "${out_file%.*}.html"
cd -
return 0
} || {
# just output the file as is
while IFS= read -r line; do printf "%s\n" "$line"; done < "$1" > "$out_file"
return 0
}
}
process "$INPUT_DIR"
|