#!/bin/bash

$* >&2
if [ $? -eq 0 ]; then
	echo "false"
	exit 0
else
	echo "true"
	exit 1
fi

