Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

We don't really understand it, so we'll give it to the programmers.


devel / alt.msdos.batch / Re: zip files in separate files according to part of filename

SubjectAuthor
* zip files in separate files according to part of filenameAmmammata
`* Re: zip files in separate files according to part of filenameHerbert Kleebauer
 +* Re: zip files in separate files according to part of filenameHerbert Kleebauer
 |`* Re: zip files in separate files according to part of filenameJJ
 | `* Re: zip files in separate files according to part of filenameHerbert Kleebauer
 |  `* Re: zip files in separate files according to part of filenameJJ
 |   `- Re: zip files in separate files according to part of filenameHerbert Kleebauer
 `* Re: zip files in separate files according to part of filenameAmmammata
  `- Re: zip files in separate files according to part of filenameAmmammata

1
zip files in separate files according to part of filename

<XnsAFDFBE4F063E3ammammatatiscalineti@127.0.0.1>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=422&group=alt.msdos.batch#422

  copy link   Newsgroups: alt.msdos.batch
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: ammammata@tiscali.it (Ammammata)
Newsgroups: alt.msdos.batch
Subject: zip files in separate files according to part of filename
Date: Fri, 7 Apr 2023 16:42:28 -0000 (UTC)
Message-ID: <XnsAFDFBE4F063E3ammammatatiscalineti@127.0.0.1>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Injection-Date: Fri, 7 Apr 2023 16:42:28 -0000 (UTC)
Injection-Info: solani.org;
logging-data="3338567"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Xnews/??.01.30 Mime-proxy/2.3.c.1 (Win32)
Cancel-Lock: sha1:dxJWoeqNCq1JCNHrzTlxyAxsSIo=
X-User-ID: eJwNx8EBwCAIA8CVBBKQcVBh/xHa+x3NxW/A6eBwJk2iXg1KRyVXvHWgsUSxaTH9SN1k/o/m8cSBd/XDVesPOjgU3A==
X-Face: s5/Tl9"^@"z`/]&NeE,Wl.^B~E2x9PA?1n:XZq2^T2Prz*},H~M'2.*@~v9MXx|OL8<EqC0MU$v+`Pu;`eq$N12\Nc*)cp$iBgD/wysO=)P%n6)\Xf}L\E$-0s\mD::Dx\6QwNh<U!LBH1Xj(=zy?OV.|=]We",DS\6[:
 by: Ammammata - Fri, 7 Apr 2023 16:42 UTC

Hello

I have 72k html files whose name is in the format yyyymmddxxxxxx.html

I'd like to pack them in ZIP/7Z files, divided per year (first 4
characters) or year and month (1-6 filename)

Any help is appreciated, thank you

--
/-\ /\/\ /\/\ /-\ /\/\ /\/\ /-\ T /-\
-=- -=- -=- -=- -=- -=- -=- -=- - -=-
............ [ al lavoro ] ...........

Re: zip files in separate files according to part of filename

<u0r5bg$16g4t$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=423&group=alt.msdos.batch#423

  copy link   Newsgroups: alt.msdos.batch
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail
From: klee@unibwm.de (Herbert Kleebauer)
Newsgroups: alt.msdos.batch
Subject: Re: zip files in separate files according to part of filename
Date: Sat, 8 Apr 2023 09:33:03 +0200
Organization: A noiseless patient Spider
Lines: 30
Message-ID: <u0r5bg$16g4t$1@dont-email.me>
References: <XnsAFDFBE4F063E3ammammatatiscalineti@127.0.0.1>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sat, 8 Apr 2023 07:33:04 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="60802f7ca6486109b833656b67c0354d";
logging-data="1261725"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1++O2FX2H7/B7q9rOMtxVjQacEjdvZBr+Q="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.9.1
Cancel-Lock: sha1:Z355VoJioV2TsApSQA1CoJxlvBQ=
Content-Language: en-US
In-Reply-To: <XnsAFDFBE4F063E3ammammatatiscalineti@127.0.0.1>
 by: Herbert Kleebauer - Sat, 8 Apr 2023 07:33 UTC

On 07.04.2023 18:42, Ammammata wrote:
> Hello
>
> I have 72k html files whose name is in the format yyyymmddxxxxxx.html
>
> I'd like to pack them in ZIP/7Z files, divided per year (first 4
> characters) or year and month (1-6 filename)
>
> Any help is appreciated, thank you

That depends on the zip program you use. But if it is a
one time job and only for a few number of years (the
number of files doesn't matter) it is maybe easier to
do it manually. For example if the years are from
2010 - 2023:

Use explorer to create an empty zip file with the name
2023.zip then at the cmd prompt enter:

for /l %i in (2010,1,2022) do copy 2023.zip %i.zip

which creates all the (empty) zip files.

Then in explorer (sorted by name) select all files
2010*.html and move them all at once into the zip file
2010.zip And then repeat this with the other years.

Re: zip files in separate files according to part of filename

<u0r8i9$16t8k$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=424&group=alt.msdos.batch#424

  copy link   Newsgroups: alt.msdos.batch
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail
From: klee@unibwm.de (Herbert Kleebauer)
Newsgroups: alt.msdos.batch
Subject: Re: zip files in separate files according to part of filename
Date: Sat, 8 Apr 2023 10:27:51 +0200
Organization: A noiseless patient Spider
Lines: 24
Message-ID: <u0r8i9$16t8k$1@dont-email.me>
References: <XnsAFDFBE4F063E3ammammatatiscalineti@127.0.0.1>
<u0r5bg$16g4t$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sat, 8 Apr 2023 08:27:53 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="60802f7ca6486109b833656b67c0354d";
logging-data="1275156"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/xvWap6lx0EiKTMh7plCPOkSyT4q8Ugpg="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.9.1
Cancel-Lock: sha1:Lz3reNn90ucgApjl2lrR7PFGcDY=
In-Reply-To: <u0r5bg$16g4t$1@dont-email.me>
Content-Language: de-DE, en-US
 by: Herbert Kleebauer - Sat, 8 Apr 2023 08:27 UTC

On 08.04.2023 09:33, Herbert Kleebauer wrote:
> On 07.04.2023 18:42, Ammammata wrote:
>> Hello
>>
>> I have 72k html files whose name is in the format yyyymmddxxxxxx.html
>>
>> I'd like to pack them in ZIP/7Z files, divided per year (first 4
>> characters) or year and month (1-6 filename)
>>
>> Any help is appreciated, thank you

> For example if the years are from
> 2010 - 2023:

Thanks for your question! This way I have learned, that
the Windows tar program can als create zip files. At the
cmd prompt type:

for /l %i in (2010,1,2023) do tar -a -cf %i.zip %i*.html

Or double the % if used in a batch file:

for /l %%i in (2020,1,2023) do tar -a -cf %%i.zip %%i*.html

Re: zip files in separate files according to part of filename

<ujwv4yfqw5le.8olmoz4z7b4u.dlg@40tude.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=425&group=alt.msdos.batch#425

  copy link   Newsgroups: alt.msdos.batch
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail
From: jj4public@outlook.com (JJ)
Newsgroups: alt.msdos.batch
Subject: Re: zip files in separate files according to part of filename
Date: Sat, 8 Apr 2023 19:36:20 +0700
Organization: A noiseless patient Spider
Lines: 20
Message-ID: <ujwv4yfqw5le.8olmoz4z7b4u.dlg@40tude.net>
References: <XnsAFDFBE4F063E3ammammatatiscalineti@127.0.0.1> <u0r5bg$16g4t$1@dont-email.me> <u0r8i9$16t8k$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Injection-Info: dont-email.me; posting-host="b70b77956fa845f65f17ba577e5b4f4f";
logging-data="1337650"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19iPCBvjaUPjkH0eziTMdRcsu2aeoNINSw="
User-Agent: 40tude_Dialog/2.0.15.84
Cancel-Lock: sha1:eHI9XGR1C+jdGgFedywuqGLKY6Y=
X-Face: \*\`0(1j~VfYC>ebz[&O.]=,Nm\oRM{of,liRO#7Eqi4|!]!(Gs=Akgh{J)605>C9Air?pa d{sSZ09u+A7f<^paR"/NH_#<mE1S"hde\c6PZLUB[t/s5-+Iu5DSc?P0+4%,Hl
X-Bitcoin: 1LcqwCQBQmhcWfWsVEAeyLchkAY8ZfuMnS
 by: JJ - Sat, 8 Apr 2023 12:36 UTC

On Sat, 8 Apr 2023 10:27:51 +0200, Herbert Kleebauer wrote:
>
> Thanks for your question! This way I have learned, that
> the Windows tar program can als create zip files. At the
> cmd prompt type:
>
> for /l %i in (2010,1,2023) do tar -a -cf %i.zip %i*.html
>
> Or double the % if used in a batch file:
>
> for /l %%i in (2020,1,2023) do tar -a -cf %%i.zip %%i*.html

TAR only support creating TAR archive format. It doesn't support creating
other archive format including ZIP.

What you're doing is simply creating TAR archive with incorrectly named file
extension. As a ZIP file.

"ZIP" file created like this won't be able to be extracted using ZIP-only
tool such as InfoZIP.

Re: zip files in separate files according to part of filename

<u0rnh6$18tc9$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=426&group=alt.msdos.batch#426

  copy link   Newsgroups: alt.msdos.batch
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail
From: klee@unibwm.de (Herbert Kleebauer)
Newsgroups: alt.msdos.batch
Subject: Re: zip files in separate files according to part of filename
Date: Sat, 8 Apr 2023 14:43:17 +0200
Organization: A noiseless patient Spider
Lines: 49
Message-ID: <u0rnh6$18tc9$1@dont-email.me>
References: <XnsAFDFBE4F063E3ammammatatiscalineti@127.0.0.1>
<u0r5bg$16g4t$1@dont-email.me> <u0r8i9$16t8k$1@dont-email.me>
<ujwv4yfqw5le.8olmoz4z7b4u.dlg@40tude.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sat, 8 Apr 2023 12:43:18 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="60802f7ca6486109b833656b67c0354d";
logging-data="1340809"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18YQ4JVsci4mMLhZyVfMK7k/V30Es18v2I="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.9.1
Cancel-Lock: sha1:MFed40OQXd8GVXKPpJooIXvhvlA=
Content-Language: de-DE, en-US
In-Reply-To: <ujwv4yfqw5le.8olmoz4z7b4u.dlg@40tude.net>
 by: Herbert Kleebauer - Sat, 8 Apr 2023 12:43 UTC

On 08.04.2023 14:36, JJ wrote:
> On Sat, 8 Apr 2023 10:27:51 +0200, Herbert Kleebauer wrote:
>>
>> Thanks for your question! This way I have learned, that
>> the Windows tar program can als create zip files. At the
>> cmd prompt type:
>>
>> for /l %i in (2010,1,2023) do tar -a -cf %i.zip %i*.html
>>
>> Or double the % if used in a batch file:
>>
>> for /l %%i in (2020,1,2023) do tar -a -cf %%i.zip %%i*.html
>
> TAR only support creating TAR archive format. It doesn't support creating
> other archive format including ZIP.
>
> What you're doing is simply creating TAR archive with incorrectly named file
> extension. As a ZIP file.
>
> "ZIP" file created like this won't be able to be extracted using ZIP-only
> tool such as InfoZIP.

I had the same opinion until a few hours ago.

https://superuser.com/questions/1659653/what-is-the-meaning-of-a-option-in-tar-exe-command

-a, --auto-compress
(c mode only) Use the archive suffix to decide a set of the
format and the compressions. As a simple example,
tar -a -cf archive.tgz source.c source.h
creates a new archive with restricted pax format and gzip
compression,
tar -a -cf archive.tar.bz2.uu source.c source.h
creates a new archive with restricted pax format and bzip2
compression and uuencode compression,
tar -a -cf archive.zip source.c source.h
creates a new archive with zip format,
tar -a -jcf archive.tgz source.c source.h
ignores the "-j" option, and creates a new archive with
restricted pax format and gzip compression,
tar -a -jcf archive.xxx source.c source.h
if it is unknown suffix or no suffix, creates a new archive with
restricted pax format and bzip2 compression.

Re: zip files in separate files according to part of filename

<1btgupfymhpsv.odny0h8i1167.dlg@40tude.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=427&group=alt.msdos.batch#427

  copy link   Newsgroups: alt.msdos.batch
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail
From: jj4public@outlook.com (JJ)
Newsgroups: alt.msdos.batch
Subject: Re: zip files in separate files according to part of filename
Date: Sun, 9 Apr 2023 08:10:51 +0700
Organization: A noiseless patient Spider
Lines: 14
Message-ID: <1btgupfymhpsv.odny0h8i1167.dlg@40tude.net>
References: <XnsAFDFBE4F063E3ammammatatiscalineti@127.0.0.1> <u0r5bg$16g4t$1@dont-email.me> <u0r8i9$16t8k$1@dont-email.me> <ujwv4yfqw5le.8olmoz4z7b4u.dlg@40tude.net> <u0rnh6$18tc9$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Injection-Info: dont-email.me; posting-host="abe9f30b8406197231b8a2824546304a";
logging-data="1557738"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19EytSwKPD/l1Tk8ThRMu9kqr3aYUJFyOU="
User-Agent: 40tude_Dialog/2.0.15.84
Cancel-Lock: sha1:2FL+szAsZMHD4PnP1AGiBCdSvug=
X-Face: \*\`0(1j~VfYC>ebz[&O.]=,Nm\oRM{of,liRO#7Eqi4|!]!(Gs=Akgh{J)605>C9Air?pa d{sSZ09u+A7f<^paR"/NH_#<mE1S"hde\c6PZLUB[t/s5-+Iu5DSc?P0+4%,Hl
X-Bitcoin: 1LcqwCQBQmhcWfWsVEAeyLchkAY8ZfuMnS
 by: JJ - Sun, 9 Apr 2023 01:10 UTC

On Sat, 8 Apr 2023 14:43:17 +0200, Herbert Kleebauer wrote:
>
> I had the same opinion until a few hours ago.
>
> https://superuser.com/questions/1659653/what-is-the-meaning-of-a-option-in-tar-exe-command

That won't work right out of the box (of TAR package).

It'll require a separate archiver tool for the appropriate archive format
such as BZIP2, GZIP, ZIP, etc. - which isn't guaranteed to always exist
along with TAR in every system.

FYI, TAR won't show any error or warning message if the needed archiver tool
is missing. So, the created file would be e.g. ZIP named TAR archive.

Re: zip files in separate files according to part of filename

<u0tp9n$1l3fh$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=428&group=alt.msdos.batch#428

  copy link   Newsgroups: alt.msdos.batch
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail
From: klee@unibwm.de (Herbert Kleebauer)
Newsgroups: alt.msdos.batch
Subject: Re: zip files in separate files according to part of filename
Date: Sun, 9 Apr 2023 09:25:42 +0200
Organization: A noiseless patient Spider
Lines: 29
Message-ID: <u0tp9n$1l3fh$1@dont-email.me>
References: <XnsAFDFBE4F063E3ammammatatiscalineti@127.0.0.1>
<u0r5bg$16g4t$1@dont-email.me> <u0r8i9$16t8k$1@dont-email.me>
<ujwv4yfqw5le.8olmoz4z7b4u.dlg@40tude.net> <u0rnh6$18tc9$1@dont-email.me>
<1btgupfymhpsv.odny0h8i1167.dlg@40tude.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sun, 9 Apr 2023 07:25:43 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="db22835cfd9be0d18088b4b6f862bb7f";
logging-data="1740273"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/mD4HlBi/EazZe83i50F6ZDMGlJoxukxc="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.9.1
Cancel-Lock: sha1:9pODBRKE+wEslQozpFRN3x4s9To=
In-Reply-To: <1btgupfymhpsv.odny0h8i1167.dlg@40tude.net>
Content-Language: en-US
 by: Herbert Kleebauer - Sun, 9 Apr 2023 07:25 UTC

On 09.04.2023 03:10, JJ wrote:
> On Sat, 8 Apr 2023 14:43:17 +0200, Herbert Kleebauer wrote:
>>
>> I had the same opinion until a few hours ago.
>>
>> https://superuser.com/questions/1659653/what-is-the-meaning-of-a-option-in-tar-exe-command
>
> That won't work right out of the box (of TAR package).
>
> It'll require a separate archiver tool for the appropriate archive format
> such as BZIP2, GZIP, ZIP, etc. - which isn't guaranteed to always exist
> along with TAR in every system.

Who cares about "every system"? This is alt.msdos.batch and
the batch code posted here also doesn't work with "every system".

The tar.exe provided with Win10 (and I suppose also the Win11 version)
can generate zip compressed files without installing any additional
software. I think this are a good news.

And I even suppose, that all the code for BZIP2, GZIP, ZIP, etc. is
part of tar.exe (in the current version), so no "separate archiver
tool" is needed. But I didn't test it, because all I need is to
generate zip files and that works.

Re: zip files in separate files according to part of filename

<u133dp$3aqr6$1@solani.org>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=429&group=alt.msdos.batch#429

  copy link   Newsgroups: alt.msdos.batch
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: ammammata@tiscali.it (Ammammata)
Newsgroups: alt.msdos.batch
Subject: Re: zip files in separate files according to part of filename
Date: Tue, 11 Apr 2023 09:49:12 +0200
Message-ID: <u133dp$3aqr6$1@solani.org>
References: <XnsAFDFBE4F063E3ammammatatiscalineti@127.0.0.1> <u0r5bg$16g4t$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset="iso-8859-15"; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 11 Apr 2023 07:49:13 -0000 (UTC)
Injection-Info: solani.org;
logging-data="3500902"; mail-complaints-to="abuse@news.solani.org"
Cancel-Lock: sha1:f1jonjUw9zAs/vtNZhfXmhTFhTE=
X-User-ID: eJwFwYEBACAEBMCVIv8Yh8r+I3SHTeFxI2gYzCoN0YjLaNYmpgdguiukcvurhF0djc7Xb+HIQVky28b0AzZSFOw=
X-Newsreader: MesNews/1.08.06.00-gb
 by: Ammammata - Tue, 11 Apr 2023 07:49 UTC

It happens that Herbert Kleebauer formulated :
> for /l %i in (2010,1,2022) do copy 2023.zip %i.zip

well, I didn't know this "from--step--to" format, thank you

FOR /L %variable IN (start,step,end) DO command [command-parameters]

The set is a sequence of numbers from start to end, by step amount.
So (1,1,5) would generate the sequence 1 2 3 4 5 and (5,-1,1) would
generate the sequence (5 4 3 2 1)

It will work fine, I'll test it later, this evening

--
/-\ /\/\ /\/\ /-\ /\/\ /\/\ /-\ T /-\
-=- -=- -=- -=- -=- -=- -=- -=- - -=-
............ [ al lavoro ] ...........

Re: zip files in separate files according to part of filename

<XnsAFEE6E1ECAD95ammammatatiscalineti@127.0.0.1>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=430&group=alt.msdos.batch#430

  copy link   Newsgroups: alt.msdos.batch
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: ammammata@tiscali.it (Ammammata)
Newsgroups: alt.msdos.batch
Subject: Re: zip files in separate files according to part of filename
Date: Sat, 22 Apr 2023 08:49:30 -0000 (UTC)
Message-ID: <XnsAFEE6E1ECAD95ammammatatiscalineti@127.0.0.1>
References: <XnsAFDFBE4F063E3ammammatatiscalineti@127.0.0.1> <u0r5bg$16g4t$1@dont-email.me> <u133dp$3aqr6$1@solani.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Injection-Date: Sat, 22 Apr 2023 08:49:30 -0000 (UTC)
Injection-Info: solani.org;
logging-data="4000781"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Xnews/??.01.30 Mime-proxy/2.3.c.1 (Win32)
Cancel-Lock: sha1:1gDgNgxnsHRdosztY8Ws+q3VRzo=
X-Face: s5/Tl9"^@"z`/]&NeE,Wl.^B~E2x9PA?1n:XZq2^T2Prz*},H~M'2.*@~v9MXx|OL8<EqC0MU$v+`Pu;`eq$N12\Nc*)cp$iBgD/wysO=)P%n6)\Xf}L\E$-0s\mD::Dx\6QwNh<U!LBH1Xj(=zy?OV.|=]We",DS\6[:
X-User-ID: eJwNysEBwCAIA8CVxCRIxykg+4/Q3vsEN69Dl1Oj4VgyF3sPd7ir7kZtyTyBZh8xhQdrQvaW3Qf/vCe8o4QPN9gUpQ==
 by: Ammammata - Sat, 22 Apr 2023 08:49 UTC

Il giorno Tue 11 Apr 2023 09:49:12a, *Ammammata* ha inviato su
alt.msdos.batch il messaggio news:u133dp$3aqr6$1@solani.org. Vediamo
cosa ha scritto:

> I'll test it later, this evening
>

later than scheduled, but I did it... and was ok :)

--
/-\ /\/\ /\/\ /-\ /\/\ /\/\ /-\ T /-\
-=- -=- -=- -=- -=- -=- -=- -=- - -=-
............ [ al lavoro ] ...........

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor