Re: g77, Windows XP Professional, CALL System(Command, Status)

2004-03-19 Thread Lars Steinke
Hi, first of all: thanks a lot for your answers! I have revised my PATH and now it is possible to do the following: write(*,*)'1' pause call system('clear') write(*,*)'2' pause end It works (Win-XP-shell)! ..but if I use: call system('cls') I get

Re: g77, Windows XP Professional, CALL System(Command, Status)

2004-03-19 Thread Lars Steinke
..sorry! Attachment: cygcheck check.txt Cygwin Win95/NT Configuration Diagnostics Current System Time: Fri Mar 19 16:21:43 2004 Windows XP Professional Ver 5.1 Build 2600 Service Pack 1 Path: C:\cygwin\usr\local\bin C:\cygwin\bin C:\cygwin\bin

RE: g77, Windows XP Professional, CALL System(Command, Status)

2004-03-19 Thread Dave Korn
-Original Message- From: cygwin-owner On Behalf Of Lars Steinke Sent: 19 March 2004 15:19 if I use: call system('cls') I get the following (new) message: cls: not found If I write the cls-command manually in the Win-XP-shell, it works. If my program tries to invoke

g77, Windows XP Professional, CALL System(Command, Status)

2004-03-18 Thread Lars Steinke
Hello, I have a problem with: CALL System(Command, Status) I am using g77 (cygwin, Windows XP Professional). The routine call system does not work - nothing happens, no error-message, the program continues and the call system command seems to be ignored. Can you help me? BTW: What is

Re: g77, Windows XP Professional, CALL System(Command, Status)

2004-03-18 Thread Igor Pechtchanski
On Thu, 18 Mar 2004, Lars Steinke wrote: Hello, I have a problem with: CALL System(Command, Status) I am using g77 (cygwin, Windows XP Professional). The routine call system does not work - nothing happens, no error-message, the program continues and the call system command seems

Re: g77, Windows XP Professional, CALL System(Command, Status)

2004-03-18 Thread Hans Horn
Lars, the (system-dependent) fortran system call has only one argument on the fortran side, a character string (character*(*) string), which does have an upper limit in length. for instance, try this one: c program tester call systest1() ! calls