#!/bin/bash

if [ "x$1" == "x"  ]
then
	echo -n "none"
else
	echo -n "ok"
fi
