I've highlighted where you errors happen, and added the errors you posted before.
#!/bin/bash
remsh $HOST -l $TLG_USR_ID -n "quota -v" > fill4
size=`awk 'NR==3 {print $2}' fill4`
rcmd: -l: Unknown host
echo $size
a=370000
if [ $size -ge $a ] ; then
test4.sh[9]: test: Specify a parameter with this command.
echo "quota of your application environment has increased ,kindly delete the unwanted files "
#else
#echo " quota is lessss,u can continue"
fi
remsh $HOST -l $TLG_RATER_USR_ID -n "quota -v" > fill3
rcmd: -l: Unknown host
size1=`awk 'NR==3 {print $2}' fill3`
if [ $size1 -ge $a ] ; then
echo "quota of your rater environment has increased,kindly delete the unwanted files"
test4.sh[18]: test: Specify a parameter with this command.
#else
#echo " quota is lessss,u can continue"
fi
export TUXEDO_USR_ID=`basename $TUX_HOME`
remsh $HOST -l $TUXEDO_USR_ID -n "quota -v" > fill2
rcmd: -l: Unknown host
size2=`awk 'NR==3 {print $2}' fill2`
if [ $size2 -ge $a ] ; then
echo "quota of your tuxedo environment has increased ,kindly delete the unwanted files "
test4.sh[28]: test: Specify a parameter with this command.
#else
#echo " quota is lessss,u can continue"
fi
. taran_test1
test4.sh[35]: test3.sh: not found. <--- path problem!
Having the script helps, as we don't have to guess at what is happening. Simply put your variables aren't working. $HOST, $a, and probably $TLG_USR_ID.
I'll assume 'taran_test1' has the var's we need, but we aren't getting the vars. Investigate taran_test1 for more clues.
Tom de