#!/bin/sh
###################################################################
# History :
#
# - create  : 2013-01-07 yangbing
#
# - Add Embedded Command scripts
#    PR 261858
#
###################################################################

if [ $# -eq 0 ]; then
/usr/bin/ICTApplication/ICTCliGateLite -call ictsipua:cmddumpcallinfo -args ""
else
argument=$@
/usr/bin/ICTApplication/ICTCliGateLite -call ictsipua:cmddumpcallinfo -args "${argument}"
fi

