I don't understand what you meant about the PATH variable. When I executed echo $PATH at the command line I got: /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin
That was just for a little background information. What that shows you is where OSX will look for programs to execute if you don't specifically tell it where the program is.. as you did by typing
/Debug/chap13.prob8The paths are colon (

delimited so you can see that OSX will only look in /usr/bin, /bin, /usr/sbin, /sbin, usr/local/bin or /usr/X11/bin for a program. This only applies to the command line... not program launching from Finder.
So if you make a handy command line tool you can place it in "usr/local/bin" for example and the program will launch without the need to supply it's path to OSX.