#!/bin/bash

if [ $# -eq 0 ]; then
    /usr/bin/kylin_cmd -q
elif [ $# -eq 1 ]; then
    /usr/bin/kylin_cmd -q "$1"
else
    /usr/bin/kylin_cmd
fi

