Being a relatively new to UNIX scripting, this particular problem is giving me problems. What I am trying to do is to 'modify' the UNIX cd command, so if a user fat fingers his input, e.g. c d /home/username the script called 'c' will recognize this and move the user to the directory he requested. The problem I am having is that that the script executes in a seperate shell and never moves the user to the correct directory, rahter he never leaves the current directory. If I execute the script with the . option it works correctly. So I guess my question is...Is there a way to execute the script from the current shell without using the . option? Thanks in advance.