#!/bin/bash

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