#!/bin/sh


pwsafe --help >/dev/null 2>/dev/null

if [ $? -eq 255 ]; then
    echo "Run: OK"
    exit 0
fi

exit 128
