aboutsummaryrefslogtreecommitdiff
path: root/test/grofftest.sh
blob: 2c559d21a9886155e17da8fd0eb1916fe629b922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

# iterates over specified directory, containing "\w+\.\d"-like files,
# executes pandoc voer them and prints stderr on nonzero return code

if [ $# -ne 2 ]; then
	echo "Not enough arguments"
	exit 1
fi

PANDOC=$1
DIR=$2

$PANDOC --version > /dev/null || { echo "pandoc executable error" >&2 ; exit 1 ; }

ls $2 | egrep "^.+\.[0-9]$" | while read f ; do
	FILE="$DIR/$f"
	$PANDOC -f man -t native < $FILE > /dev/null
	if [ $? -ne 0 ]; then
		echo "Failed to convert $FILE"
	fi
done