Command script to be run in both AIX and LINUX

Hi,

Script :

#!/usr/bin/ksh
echo "\n\t\t\t\t Enter your Name : \c"
read name
 
##############################
I ran the script in LINUX 
 
Enter your Name : abcdefghijklmnopqrstuvwxyz
 

I ran the script in AIX

Enter your Name : opqrstuvwxyz <
 

I'm not able to see the complete input in AIX .

Please let me know what is the settings that needs to be changed to see the complete input in AIX as well.

????

ian12:/home/vbe $ uname;oslevel
AIX
6.1.0.0
ian12:/home/vbe $ ./00

                                 Enter your Name : sadjfsaljkhlkjhaljshflajhfjshalfhsdjhfaljh
sadjfsaljkhlkjhaljshflajhfjshalfhsdjhfaljh
ian12:/home/vbe $ more 00
#!/usr/bin/ksh
echo "\n\t\t\t\t Enter your Name : \c"
read name
sleep 3
echo $name

Maximize your terminal window and then execute.
Probably you want want to execute the command resize also!

--ahamed