*BSD News Article 59965


Return to BSD News archive

Path: euryale.cc.adfa.oz.au!newshost.anu.edu.au!harbinger.cc.monash.edu.au!news.mel.connect.com.au!munnari.OZ.AU!news.ecn.uoknor.edu!paladin.american.edu!gatech!newsfeed.internetmci.com!howland.reston.ans.net!math.ohio-state.edu!magnus.acs.ohio-state.edu!csn!csn!nntp-xfer-2.csn.net!symbios.com!news
From: 102025.3407@compuserve.com (Bill Delaney)
Newsgroups: comp.unix.bsd.freebsd.misc
Subject: Re: Problem with g++ compiled program output
Date: 18 Jan 1996 14:48:22 GMT
Organization: Symbios Logic
Lines: 6
Distribution: world
Message-ID: <4dlmjm$1a0@jupiter.ks.symbios.com>
References: <17JAN199620510552@rosie.uh.edu>
NNTP-Posting-Host: bdelaney.wichitaks.ncr.com
Mime-Version: 1.0
Content-Type: Text/Plain; charset=US-ASCII
X-Newsreader: WinVN 0.99.6

You probably don't have '.' in your PATH.  When your program is named
"test", the binary shows up in your current directory, but the program
that you execute is the "test" program that's in /usr/bin (or some other
system directory).  Use "./test" to run your program...