10-03-04 02:13 AM
sgtembe@hotmail.com (Suhas) wrote in message news:
>
> AIX 5.2
>
> Hello Group,
>
> What is the maximum number of characters that I can assign to a variable?
>
varname='v'
while :; do
varname="${varname}A"
eval "$varname="
case $? in
0) :;;
*) echo 'max var name len = '
expr "$varname" : '.*';;
esac
done
[ Post a follow-up to this message ]
|