Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

Xerox does it again and again and again and ...


devel / comp.lang.lisp / how to execute a command to Windows/DOS from SBCL

SubjectAuthor
* how to execute a command to Windows/DOS from SBCLMark Tarver
`* Re: how to execute a command to Windows/DOS from SBCLSTE
 `- Re: how to execute a command to Windows/DOS from SBCLMark Tarver

1
how to execute a command to Windows/DOS from SBCL

<f0b6f06a-4ad9-4f7a-b1fc-5bc241294a27n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17336&group=comp.lang.lisp#17336

  copy link   Newsgroups: comp.lang.lisp
X-Received: by 2002:a37:c20c:0:b0:742:bd81:b89 with SMTP id i12-20020a37c20c000000b00742bd810b89mr124498qkm.2.1678395790483;
Thu, 09 Mar 2023 13:03:10 -0800 (PST)
X-Received: by 2002:a81:ae27:0:b0:530:a340:bcd7 with SMTP id
m39-20020a81ae27000000b00530a340bcd7mr15273023ywh.8.1678395790241; Thu, 09
Mar 2023 13:03:10 -0800 (PST)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.lisp
Date: Thu, 9 Mar 2023 13:03:09 -0800 (PST)
Injection-Info: google-groups.googlegroups.com; posting-host=86.28.97.229; posting-account=kJbRXgoAAADVvCa8xCOuqxtZ-KSaXUAS
NNTP-Posting-Host: 86.28.97.229
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <f0b6f06a-4ad9-4f7a-b1fc-5bc241294a27n@googlegroups.com>
Subject: how to execute a command to Windows/DOS from SBCL
From: dr.mtarver@gmail.com (Mark Tarver)
Injection-Date: Thu, 09 Mar 2023 21:03:10 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 1105
 by: Mark Tarver - Thu, 9 Mar 2023 21:03 UTC

I'm having some problems here. The task is to execute say 'dir' and return the results as a string in SBCL.

M.

Re: how to execute a command to Windows/DOS from SBCL

<tueb24$1qohd$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17337&group=comp.lang.lisp#17337

  copy link   Newsgroups: comp.lang.lisp
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: usenet.233ph@slmail.me (STE)
Newsgroups: comp.lang.lisp
Subject: Re: how to execute a command to Windows/DOS from SBCL
Date: Fri, 10 Mar 2023 04:18:12 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 5
Message-ID: <tueb24$1qohd$1@dont-email.me>
References: <f0b6f06a-4ad9-4f7a-b1fc-5bc241294a27n@googlegroups.com>
Injection-Date: Fri, 10 Mar 2023 04:18:12 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="938b7c479b211cdcc67c459f845f4303";
logging-data="1925677"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX186rw9iSrHHdkmLh8PrQnojFaiBNxsgt8c="
User-Agent: slrn/1.0.3 (Darwin)
Cancel-Lock: sha1:kRwjE9PKGMuaNUeVbfpjFRP0uCg=
 by: STE - Fri, 10 Mar 2023 04:18 UTC

On 2023-03-09, Mark Tarver <dr.mtarver@gmail.com> wrote:
> I'm having some problems here. The task is to execute say 'dir' and return the results as a string in SBCL.

(ql:quickload 'inferior-shell)
(defvar a (inferior-shell:run/s "ls"))

Re: how to execute a command to Windows/DOS from SBCL

<88df7e37-d5cf-48d5-9277-dfe85536b083n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17338&group=comp.lang.lisp#17338

  copy link   Newsgroups: comp.lang.lisp
X-Received: by 2002:ac8:701b:0:b0:3bf:d520:1d59 with SMTP id x27-20020ac8701b000000b003bfd5201d59mr6526767qtm.1.1678449104043;
Fri, 10 Mar 2023 03:51:44 -0800 (PST)
X-Received: by 2002:a81:4403:0:b0:526:859e:8b16 with SMTP id
r3-20020a814403000000b00526859e8b16mr16488924ywa.8.1678449103727; Fri, 10 Mar
2023 03:51:43 -0800 (PST)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.lisp
Date: Fri, 10 Mar 2023 03:51:43 -0800 (PST)
In-Reply-To: <tueb24$1qohd$1@dont-email.me>
Injection-Info: google-groups.googlegroups.com; posting-host=86.28.97.229; posting-account=kJbRXgoAAADVvCa8xCOuqxtZ-KSaXUAS
NNTP-Posting-Host: 86.28.97.229
References: <f0b6f06a-4ad9-4f7a-b1fc-5bc241294a27n@googlegroups.com> <tueb24$1qohd$1@dont-email.me>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <88df7e37-d5cf-48d5-9277-dfe85536b083n@googlegroups.com>
Subject: Re: how to execute a command to Windows/DOS from SBCL
From: dr.mtarver@gmail.com (Mark Tarver)
Injection-Date: Fri, 10 Mar 2023 11:51:44 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 1457
 by: Mark Tarver - Fri, 10 Mar 2023 11:51 UTC

On Friday, 10 March 2023 at 04:18:18 UTC, STE wrote:
> On 2023-03-09, Mark Tarver <dr.mt...@gmail.com> wrote:
> > I'm having some problems here. The task is to execute say 'dir' and return the results as a string in SBCL.
> (ql:quickload 'inferior-shell)
> (defvar a (inferior-shell:run/s "ls"))

thx

M.

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor