New user script

I set up the following script to create the output file names in the user's directory for each file that I
create using Reform.   That way they are ready for filePro to output to and prevent users from
overwriting each other if they select the same report or form at the same time.
 

# newusr script - made and run from the /usr directory
# adds form names to user's dir for Reform
#
echo -n " Enter New User Name: "
read i
cd $i
touch outputname                             # add more of these three lines, one for each output name
chown filepro outputname
chmod 777 outputname
chgrp group outputname
echo $i
cd ..
 
 

This is my crude attempt at shell scripting (not my strong point).   Suggestions Welcome.