blob: 88246a5412742f5cf4631dd49268565070bb6b48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
set -euf
DB=${1-"/krebs/db/truth"}
HERE=$(dirname $(readlink -f $0))
read LINE
if (cat $DB;echo $LINE) | $HERE/truth2json - >/dev/null ;then
echo "success"
else
echo "you fail"
fi
|