#!/bin/bash
echo -e "Please enter the list of all the H5Ps (allH5Ps.txt):"
read infile
while read f; do
	echo $f
	./h5p-view -f $f -s php
done < $infile
