[Freedos-user] Commands under djgpp bash

2009-03-04 Thread Fabrício Ceolin
Hi guys, I'm trying to use some commands under djgpp bash, but the system report: Not enough memory ex: dmi.exe There are some way to run this command under bash? -- Fabrício Ceolin ulevel.com Diretor Executivo --

Re: [Freedos-user] Commands under djgpp bash

2009-03-04 Thread Evans Jahja
Fabrício Ceolin wrote: Hi guys, I'm trying to use some commands under djgpp bash, but the system report: Not enough memory ex: dmi.exe There are some way to run this command under bash? -- Fabrício Ceolin ulevel.com Diretor Executivo

Re: [Freedos-user] Commands under djgpp bash

2009-03-04 Thread Blair Campbell
I'm trying to use some commands under djgpp bash, but the system report: Not enough memory Are you using the 32-bit port? ex: dmi.exe There are some way to run this command under bash? -- Fabrício Ceolin ulevel.com Diretor Executivo

Re: [Freedos-user] Commands under djgpp bash

2009-03-04 Thread Fabrício Ceolin
Hi, Thanks for the answer. I'm using a 32-bit port. I solved this issue with great workaround: I put a partial environment in a file echo VAR1=$VAR1 tmp.file echo VAR2=$VAR2 tmp.file ... exit 253 On a .bat script, I test the return code, and return to bash after finished. :script If