#!/bin/sh
###################################################################
# History :
#
# - create  : 09/4/2009 Bruce Zhang
#
# - 2009/09/14 Bruce Zhang 
#    smrc00120000 change script arguments for multi words
#
###################################################################s

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

