This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Bash line-feed problem


The bash port generates a line-feed sometimes when it starts up a
program. I know this has been mentioned before, but has anyone 
solved this problem? It makes even very simple progams such
as the following fail:

#include <iostream.h>
main()
{
	char buf[80] = "";

	cout << "Enter a line:";
	cin.getline(buf, 80, '\n');
	cout << "You wrote: " << buf << endl;

	return 0;
}

This works right under csh and command.com, but fails under 
gnu-win32 bash. 

Anyone have a bash binary that doesn't output this unwanted line-feed?

Thanks very much for your help,
Dave
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]