#!/bin/sh set -euf DB=${1-"/krebs/db/truth"} HERE=$(dirname $(readlink -f $0)) read LINE if (cat $DB;echo $LINE) | $HERE/truth2json - 1>/dev/null ;then echo "success" 1>&2 echo "$LINE" else echo "you fail" 1>&2 fi