#!/bin/sh
prefix=/usr
export PATH="${prefix}/share/imcom:${PATH}"
if [ $1 = "-c" ] || [ $1 = "--create" ]; then
	AccountCreator.py && CLI.py
else
	CLI.py "$1"
fi
