Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

My sister opened a computer store in Hawaii. She sells C shells down by the seashore.


devel / comp.unix.shell / Re: Gap script: `QUIT;` vs `quit;`.

SubjectAuthor
* Gap script: `QUIT;` vs `quit;`.hongy...@gmail.com
`* Re: Gap script: `QUIT;` vs `quit;`.Lew Pitcher
 `* Re: Gap script: `QUIT;` vs `quit;`.hongy...@gmail.com
  `- Re: Gap script: `QUIT;` vs `quit;`.Lew Pitcher

1
Gap script: `QUIT;` vs `quit;`.

<ff51a9ae-3bd3-406e-a1b9-ea3a5c1dc567n@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=5284&group=comp.unix.shell#5284

  copy link   Newsgroups: comp.unix.shell
X-Received: by 2002:ac8:5bcb:0:b0:2f3:906d:20d with SMTP id b11-20020ac85bcb000000b002f3906d020dmr6738976qtb.575.1651411867549;
Sun, 01 May 2022 06:31:07 -0700 (PDT)
X-Received: by 2002:a05:6214:3006:b0:443:cf1e:58d7 with SMTP id
ke6-20020a056214300600b00443cf1e58d7mr6462294qvb.53.1651411867338; Sun, 01
May 2022 06:31:07 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.unix.shell
Date: Sun, 1 May 2022 06:31:07 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=203.175.13.156; posting-account=kF0ZaAoAAACPbiK5gldhAyX5qTd3krV2
NNTP-Posting-Host: 203.175.13.156
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <ff51a9ae-3bd3-406e-a1b9-ea3a5c1dc567n@googlegroups.com>
Subject: Gap script: `QUIT;` vs `quit;`.
From: hongyi.z...@gmail.com (hongy...@gmail.com)
Injection-Date: Sun, 01 May 2022 13:31:07 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
 by: hongy...@gmail.com - Sun, 1 May 2022 13:31 UTC

On Ubuntu 20.04.3 LTS, I use gap [1] (GAP - Groups, Algorithms, Programming - a System for Computational Discrete Algebra) to run the following script:

$ cat gap-test.g
Display(SmallGroup(8,1));
QUIT;

$ gap gap-test.g
┌───────┐ GAP 4.12dev-1280-g6feeb8c built on 2022-04-25 14:24:55+0800
│ GAP │ https://www.gap-system.org
└───────┘ Architecture: x86_64-pc-linux-gnu-default64-kv8
Configuration: gmp 6.2.0, GASMAN, readline
Loading the library and packages ...
Packages: AClib 1.3.2, Alnuth 3.2.1, AtlasRep 2.1.2, AutoDoc 2022.03.10,
AutPGrp 1.10.2, Browse 1.8.14, CaratInterface 2.3.3, CRISP 1.4..5,
Cryst 4.1.24, CrystCat 1.1.9, CTblLib 1.3.3, FactInt 1.6.3,
FGA 1.4.0, Forms 1.2.7, GAPDoc 1.6.5, genss 1.6.6, IO 4.7.2,
IRREDSOL 1.4.3, LAGUNA 3.9.4, orb 4.8.4, Polenta 1.3.10,
Polycyclic 2.16, PrimGrp 3.4.1, RadiRoot 2.9, recog 1.3.2,
ResClasses 4.7.2, SmallGrp 1.5, Sophus 1.25, SpinSym 1.5.2,
TomLib 1.2.9, TransGrp 3.6.1, utils 0.72
Try '??help' for help. See also '?copyright', '?cite' and '?authors'
pc-group with 3 pc-generators and relations:
g1^2 = g2
g2^2 = g3
g3^2 = id
all generators commute, the groups is abelian
$

If I change the script into the following, i.e., use `quit;` as the last command:

$ cat gap-test.g
Display(SmallGroup(8,1));
quit;

In this case, the test result is as follows:

$ gap gap-test.g
┌───────┐ GAP 4.12dev-1280-g6feeb8c built on 2022-04-25 14:24:55+0800
│ GAP │ https://www.gap-system.org
└───────┘ Architecture: x86_64-pc-linux-gnu-default64-kv8
Configuration: gmp 6.2.0, GASMAN, readline
Loading the library and packages ...
Packages: AClib 1.3.2, Alnuth 3.2.1, AtlasRep 2.1.2, AutoDoc 2022.03.10,
AutPGrp 1.10.2, Browse 1.8.14, CaratInterface 2.3.3, CRISP 1.4..5,
Cryst 4.1.24, CrystCat 1.1.9, CTblLib 1.3.3, FactInt 1.6.3,
FGA 1.4.0, Forms 1.2.7, GAPDoc 1.6.5, genss 1.6.6, IO 4.7.2,
IRREDSOL 1.4.3, LAGUNA 3.9.4, orb 4.8.4, Polenta 1.3.10,
Polycyclic 2.16, PrimGrp 3.4.1, RadiRoot 2.9, recog 1.3.2,
ResClasses 4.7.2, SmallGrp 1.5, Sophus 1.25, SpinSym 1.5.2,
TomLib 1.2.9, TransGrp 3.6.1, utils 0.72
Try '??help' for help. See also '?copyright', '?cite' and '?authors'
pc-group with 3 pc-generators and relations:
g1^2 = g2
g2^2 = g3
g3^2 = id
all generators commute, the groups is abelian
Reading file "gap-test.g" has been aborted.
gap>

As you can see, gap doesn't quit its running process even after all the commands have been completed. I'm very confused on this behavior. Any hints will be highly appreciated.

[1] https://www.gap-system.org/

Regards,
HZ

Re: Gap script: `QUIT;` vs `quit;`.

<t4m3nf$a7t$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=5285&group=comp.unix.shell#5285

  copy link   Newsgroups: comp.unix.shell
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: lew.pitc...@digitalfreehold.ca (Lew Pitcher)
Newsgroups: comp.unix.shell
Subject: Re: Gap script: `QUIT;` vs `quit;`.
Date: Sun, 1 May 2022 13:59:11 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 23
Message-ID: <t4m3nf$a7t$1@dont-email.me>
References: <ff51a9ae-3bd3-406e-a1b9-ea3a5c1dc567n@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 1 May 2022 13:59:11 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="4cad97e7e95baa1ad309664f5b82cb99";
logging-data="10493"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+pUx8ohHITE33E1l9i5dOUeHiVYuECHzo="
User-Agent: Pan/0.139 (Sexual Chocolate; GIT bf56508
git://git.gnome.org/pan2)
Cancel-Lock: sha1:x4/XjMW8Vm9DzQsxHBcg2iCZd7g=
 by: Lew Pitcher - Sun, 1 May 2022 13:59 UTC

On Sun, 01 May 2022 06:31:07 -0700, hongy...@gmail.com wrote:

> On Ubuntu 20.04.3 LTS, I use gap [1] (GAP - Groups, Algorithms,
> Programming - a System for Computational Discrete Algebra) to run the
> following script:
[snip]
> As you can see, gap doesn't quit its running process even after all the
> commands have been completed. I'm very confused on this behavior. Any
> hints will be highly appreciated.
>
> [1] https://www.gap-system.org/

I suggest checking out the FAQ at https://www.gap-system.org/Faq/faq.html
and the documentation at https://www.gap-system.org/Doc/doc.html

If you still have problems, try using the contacts at
https://www.gap-system.org/Contacts/contacts.html

--
Lew Pitcher
"In Skills, We Trust"

Re: Gap script: `QUIT;` vs `quit;`.

<519d80a3-c63c-4856-abff-ca7a29733802n@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=5286&group=comp.unix.shell#5286

  copy link   Newsgroups: comp.unix.shell
X-Received: by 2002:a37:bc8:0:b0:69f:a898:cefb with SMTP id 191-20020a370bc8000000b0069fa898cefbmr5541067qkl.525.1651414495865;
Sun, 01 May 2022 07:14:55 -0700 (PDT)
X-Received: by 2002:a05:6214:c26:b0:446:63cb:35eb with SMTP id
a6-20020a0562140c2600b0044663cb35ebmr6289404qvd.63.1651414495703; Sun, 01 May
2022 07:14:55 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.unix.shell
Date: Sun, 1 May 2022 07:14:55 -0700 (PDT)
In-Reply-To: <t4m3nf$a7t$1@dont-email.me>
Injection-Info: google-groups.googlegroups.com; posting-host=203.175.13.156; posting-account=kF0ZaAoAAACPbiK5gldhAyX5qTd3krV2
NNTP-Posting-Host: 203.175.13.156
References: <ff51a9ae-3bd3-406e-a1b9-ea3a5c1dc567n@googlegroups.com> <t4m3nf$a7t$1@dont-email.me>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <519d80a3-c63c-4856-abff-ca7a29733802n@googlegroups.com>
Subject: Re: Gap script: `QUIT;` vs `quit;`.
From: hongyi.z...@gmail.com (hongy...@gmail.com)
Injection-Date: Sun, 01 May 2022 14:14:55 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 34
 by: hongy...@gmail.com - Sun, 1 May 2022 14:14 UTC

On Sunday, May 1, 2022 at 9:59:16 PM UTC+8, Lew Pitcher wrote:
> On Sun, 01 May 2022 06:31:07 -0700, hongy...@gmail.com wrote:
>
> > On Ubuntu 20.04.3 LTS, I use gap [1] (GAP - Groups, Algorithms,
> > Programming - a System for Computational Discrete Algebra) to run the
> > following script:
> [snip]
> > As you can see, gap doesn't quit its running process even after all the
> > commands have been completed. I'm very confused on this behavior. Any
> > hints will be highly appreciated.
> >
> > [1] https://www.gap-system.org/
> I suggest checking out the FAQ at https://www.gap-system.org/Faq/faq.html
> and the documentation at https://www.gap-system.org/Doc/doc.html
>
> If you still have problems, try using the contacts at
> https://www.gap-system.org/Contacts/contacts.html

Thank you. I understand the difference between them:

1. quit

type 'quit;' to quit to outer loop

2. In manual, the following description is used:

6.7.1
QUIT
.. QUIT
(global variable)
An emergency way to leave GAP is to enter QUIT at any gap> or brk> or
brk_nn > prompt.

Regards,
HZ

Re: Gap script: `QUIT;` vs `quit;`.

<t4m53t$a7t$2@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=5287&group=comp.unix.shell#5287

  copy link   Newsgroups: comp.unix.shell
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: lew.pitc...@digitalfreehold.ca (Lew Pitcher)
Newsgroups: comp.unix.shell
Subject: Re: Gap script: `QUIT;` vs `quit;`.
Date: Sun, 1 May 2022 14:22:53 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 37
Message-ID: <t4m53t$a7t$2@dont-email.me>
References: <ff51a9ae-3bd3-406e-a1b9-ea3a5c1dc567n@googlegroups.com>
<t4m3nf$a7t$1@dont-email.me>
<519d80a3-c63c-4856-abff-ca7a29733802n@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 1 May 2022 14:22:53 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="4cad97e7e95baa1ad309664f5b82cb99";
logging-data="10493"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+arjZfIiE+OhvSBq1xwKMShlVgeXe3pQw="
User-Agent: Pan/0.139 (Sexual Chocolate; GIT bf56508
git://git.gnome.org/pan2)
Cancel-Lock: sha1:vtBHQj4oSQol3OZ/pQ4iaxso3p8=
 by: Lew Pitcher - Sun, 1 May 2022 14:22 UTC

On Sun, 01 May 2022 07:14:55 -0700, hongy...@gmail.com wrote:

> On Sunday, May 1, 2022 at 9:59:16 PM UTC+8, Lew Pitcher wrote:
>> On Sun, 01 May 2022 06:31:07 -0700, hongy...@gmail.com wrote:
>>
>> > On Ubuntu 20.04.3 LTS, I use gap [1] (GAP - Groups, Algorithms,
>> > Programming - a System for Computational Discrete Algebra) to run the
>> > following script:
>> [snip]
>> > As you can see, gap doesn't quit its running process even after all
>> > the commands have been completed. I'm very confused on this behavior.
>> > Any hints will be highly appreciated.
>> >
>> > [1] https://www.gap-system.org/
>> I suggest checking out the FAQ at
>> https://www.gap-system.org/Faq/faq.html and the documentation at
>> https://www.gap-system.org/Doc/doc.html
>>
>> If you still have problems, try using the contacts at
>> https://www.gap-system.org/Contacts/contacts.html
>
> Thank you. I understand the difference between them:

Apparently, you don't "understand the difference between" QUIT and quit.

And, you certainly don't understand the scope of the help you can
get in comp.unix.shell. Your question has nothing to do with
the unix shell, and, if you need clarification on the differences
between commands that a specific application supports, you should
find a forum that discusses /that application/, or use /that
application's/ FAQ/documentation/contacts.

-- 30 --

--
Lew Pitcher
"In Skills, We Trust"

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor