Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Linux shell access ??

From: volker::nitsch::gmail::com at: 28-Feb-2005 14:23

On Mon, 28 Feb 2005 09:46:23 +0100, Gruss Ronald <[ronaldoff--free--fr]> wrote:
> Volker Nitsch a =E9crit : > > >On Sun, 27 Feb 2005 10:08:31 +0100, Gruss Ronald <[ronaldoff--free--fr]> wrote: > > > > > >>Hi, > >> > >>Is there any possibility that we can access shell under linux Rebol ??? > >> > >>The call capability is very interesting under Windows... but I'm less > >>and less working under Windows ;-) > >> > >>Does RT plan this feature in (very close) future ? > >> > >> > >> > > > >Its already there. > > > > > > > Sorry, knew it under windows, but how can I use it under linux ? > How could I run a shell script from rebol ?
mainly call "the-command" ;runs in background ; call/wait needs a newer beta, had bug before. call/wait "the command" ; waits for completion call/wait/output "the command" out: copy"" ;then 'out has content latest /core returns also the returncode, if 0 <> call/wait "compile something" [something went wrong]
> Which version of Rebol gives access to shell ?
The official outdated /view with license.key. The /view-betas and latest /core-alpha for freebeer: http://www.rebol.net/builds/
> -- > La th=E9orie, c'est quand on sait tout et que rien ne fonctionne. > > La pratique, c'est quand tout fonctionne et que personne ne sait pourquoi.. > > Ici, nous avons r=E9uni th=E9orie et pratique : Rien ne fonctionne... et personne ne sait pourquoi ! > > - Albert Einstein - > > -- Binary/unsupported file stripped by Ecartis -- > -- Type: text/x-vcard > -- File: ronaldoff.vcf > > -- > To unsubscribe from the list, just send an email to rebol-request > at rebol.com with unsubscribe as the subject. >
-- -Volker Any problem in computer science can be solved with another layer of indirection. But that usually will create another problem. David Wheeler