*-"[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
|
| I've downloaded emacs and g++ and it seems to work fine.  I've created a
| mytest program and it compiled fine.  When I try to execute mytest I get
| 
| bash:mytest: command not found
| 
| So how do you invoke your c++ binaries?  Thanks.

Is it possible that the current directory isn't in your PATH.
Try 

$ ./mytest

You can see the search path with

$ echo $PATH

and add current dir to it with

$ export PATH=$PATH:.

-- 
The only way tcsh "rocks" is when the rocks are attached to its feet
in the deepest part of a very deep lake.             (Linus Torvalds)
[EMAIL PROTECTED]   [-: .elOle. :-]   [EMAIL PROTECTED]

Reply via email to