#!/bin/sh
read line

if [ "$1" = "--get-password" ]; then
	if [ "$line" = "katrin GETPASSWD" ]; then
		echo -n "123"
	fi
exit
fi


if [ "$line" = "katrin 123" ]; then
	echo "OK"
else
	echo "ERR"
fi

