Subject: Re: Newbie questions
To: Kris Lander <kris@inquo.net>
From: Kevin Ogden <kkb@ddw.net>
List: port-mac68k
Date: 07/13/1998 15:37:16
----------
> From: Kris Lander <kris@inquo.net>
> To: NetBSD <port-mac68k@NetBSD.ORG>
> Subject: Newbie questions
> Date: Saturday, July 11, 1998 1:16 AM
> 
> Hi all, I just installed NetBSD/Mac68k on my old Macintosh IIcx, and 
> while I'm familiar with Unix operating systems, I just have a few 
> questions.
> I tried to compile a simple HelloWorld program, (I'm still learning 
> C/C++, so this is a real easy one for me to write and compile).  I guess 
> everything compiled alright, I got an a.out file.  But, when I try to run

> the program to see if it worked I get a message that says:
> a.out: Command not found.

did you just type 'a.out'?  If you did, you need to type './a.out', unless
the binary is in a directory in your path environment variable you can't
just type the command name in that directory, you have to type ./ before
the command.

	Kevin