Re: [fpc-pascal] fpExecv

2005-09-07 Thread Alain Michaud
Ho, my mistake! I did not see it. It is unfortunate that the index tools does not scan in all the RTL units at once, but just unit by unit. Thank you again Alain On Wed, 2005-09-07 at 19:45 +0200, Marco van de Voort wrote: > > this is exactly what I was looking for. Thank you very

Re: [fpc-pascal] fpExecv

2005-09-07 Thread Marco van de Voort
> this is exactly what I was looking for. Thank you very much. > > I have one concern however: This procedure is part of the "oldlinux" > unit. Has it been relocated? Should I still use it? No, but you can use the one in unit unix. ___ fpc-pascal ma

Re: [fpc-pascal] fpExecv

2005-09-07 Thread Alain Michaud
Hi, this is exactly what I was looking for. Thank you very much. I have one concern however: This procedure is part of the "oldlinux" unit. Has it been relocated? Should I still use it? Thanks Alain On Wed, 2005-09-07 at 00:15 -0700, L505 wrote: > > Question: what should I do to redirect

Re: [fpc-pascal] fpExecv

2005-09-06 Thread L505
> Question: what should I do to redirect ("pipe") the output "123" into > the program "prog2" and not print it? Is it possible? > > Alain Michaud > Have you seen "AssignStream()". You can grab the piped output without it printing off on you. There are more ways to do it if you want more cross

[fpc-pascal] fpExecv

2005-09-06 Thread Alain Michaud
Hi, Someone could please help me with this: the simple console program (linux): >prog1 --arg1 123 prints the result 123: >prog1 --arg 123 123 now I write another program 'prog2' that has the line: fpExecv('prog1',pp); where pp[0] <-- 'prog1' pp[1] <-- '--arg' pp[2] <-- '123' If I run