Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > alt.comp.os.windows-11 > #33325

Re: How to print entire .txt file

From "Carlos E. R." <robin_listas@es.invalid>
Newsgroups alt.comp.os.windows-10, alt.comp.os.windows-11
Subject Re: How to print entire .txt file
Date 2026-07-25 21:48 +0200
Message-ID <ncki7pF2q15U5@mid.individual.net> (permalink)
References (5 earlier) <nchulmFlufaU5@mid.individual.net> <1140ka3$vq85$1@dont-email.me> <nci2vdFluf9U11@mid.individual.net> <1140u2r$12vt8$1@dont-email.me> <ncjjk6F2q15U2@mid.individual.net>

Cross-posted to 2 groups.

Show all headers | View raw


On 2026-07-25 13:05, Carlos E. R. wrote:
> On 2026-07-25 01:56, Paul wrote:
>> On Fri, 7/24/2026 5:15 PM, Carlos E. R. wrote:
>>> On 2026-07-24 23:09, J. P. Gilliver wrote:
>>>> On 2026/7/24 21:1:58, Carlos E. R. wrote:
>>>>> On 2026-07-24 21:06, J. P. Gilliver wrote:
>>>> []
>>>>>> I was going to say "have you tried with a colon on the end (i. e.
>>>>>> 'LPT1:')", but ...
>>>>>>>
>>>>>>> No, this kind of command can no longer work. Rather, open the 
>>>>>>> file in
>>>>>>
>>>>>> ... I suspected that was the case. Does it not work because modern
>>>>>> printers don't know what to do if fed plain ASCII, or because the now
>>>>>> complex routing is a lot more, well, complex than a parallel (or
>>>>>> serial!) port used to be? Or both?
>>>>>
>>>>> Because "copy file printer" can not handle complex situations like
>>>>> Unicode or rich text.
>>>>>
>>>>> And if there is an EOF character, it stops printing.
>>>>>
>>>> I forgot the /B switch that someone mentioned earlier in the thread.
>>>> Without it, COPY is indeed a text command (old definition of text -
>>>> probably 7-bit, ASCII!), and indeed the EOF character would end it. 
>>>> With
>>>> the /B (binary) switch, I think COPY uses the file size to know when to
>>>> stop.
>>>
>>> 8 bit.
>>>
>>> I remember pin printers handling the 8 bits, and having a bank of 
>>> switches to select the codepage, ie, what to print for chars above 
>>> 127. And this was in the 80's.
>>>
>>> Older printers designed for non IBM-PCs might have been 7 bits.
>>
>> Common printers aren't reviewed in any useful way anymore,
>> so who knows what protocols or parsing opportunities, work.
>>
>> I found a thread, where someone was claiming the copy to remote LPR1
>> trick, "drove" a printer that was USB connected on a remote machine.
>>
>> There have also been claims in the past, that some printers
>> can print a PDF sent to them, and the printer has a PDF parser
>> inside. But that is not likely to be a $100 inkjet. Previously,
>> a party trick was handling PostScript and LPR, for the PostScript
>> printers. Some of those printers had a 25MHz processor inside (RISC).
> 
> Yes, my printer can handle postscript sent directly to it. Raw copy as 
> is. Tried in Linux, probably works also in Windows. I think it also 
> copes with plain text, but not unicode; however, I don't remember if I 
> actually tested this and what was the result, that would be over 10 
> years ago.
> 
> Modern printers of the kind can handle PDF directly. I do not know if 
> this is instead of PS.
> 
> It is an HP laserjet printer.

(~10 year old printer)

I tested my printer, in Linux. I created a text file which had two 
utf-chars, an then sent it to the printer, raw:

cer@Laicolasse:~> lpr -l p.txt
cer@Laicolasse:~> file p.txt
p.txt: Unicode text, UTF-8 text
cer@Laicolasse:~>

The text printed correctly, till it reached the utf-8 chars, then it 
printed three garbage chars. And as the line was too long, it went over 
the right edge.

I then converted to codepage 850, and tried again:

cer@Laicolasse:~> iconv --from-code=UTF-8 --to-code=CP850 p.txt -o p-850.txt
iconv: illegal input sequence at position 64
cer@Laicolasse:~> iconv -f UTF-8 -t CP850//TRANSLIT p.txt > p-850.txt
cer@Laicolasse:~> less p-850.txt
cer@Laicolasse:~> file p-850.txt
p-850.txt: ASCII text
cer@Laicolasse:~> lpr -l p-850.txt
cer@Laicolasse:~>

And it printed correctly.

Then I edited the file, adding the accented wovels and the ñ. It did not 
print correctly because Linux text doesn't use LF+CR :-D

So again I edited the text to use a single short line:

"quotes" áéíóúÁÉÍÓÚñÑ¿?¡!

It only failed in printing some of the upper case wovels, possibly 
because latin-1 doesn't have them.


So this laserjet printer can handle raw 8 bit text in codepage latin-1 
correctly.

:-)

And I know it can also handle postscript sent raw to it, because I 
remember testing this long ago. It must have some algorithm that detects 
the type of data it receives and processes it correctly.

-- 
Cheers,
        Carlos E.R.
        ES🇪🇸, EU🇪🇺;

Back to alt.comp.os.windows-11 | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

How to print entire  .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-18 13:36 -0400
  Re: How to print entire .txt file Roger Mills <mills37.fslife@gmail.com> - 2026-07-18 18:59 +0100
  Re: How to print entire  .txt file Frank Slootweg <this@ddress.is.invalid> - 2026-07-18 18:21 +0000
    Re: How to print entire  .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-18 19:55 -0400
      Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-19 01:50 +0100
        Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-18 21:17 -0400
          Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-19 09:16 +0100
          Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-19 22:15 +0200
            Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-19 22:05 +0100
              Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-19 23:24 +0200
                Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-19 18:14 -0400
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-20 03:10 +0200
                Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-20 01:12 +0100
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-20 03:16 +0200
                Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-20 13:06 -0400
                Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-20 18:51 +0100
                Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-08-16 21:19 -0400
                Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-20 18:48 +0100
        Re: How to print entire .txt file... PDF? Acrobat? "Mr. Man-wai Chang" <toylet.toylet@gmail.com> - 2026-07-19 09:17 +0800
          Re: How to print entire .txt file... PDF? Acrobat? knuttle <keith_nuttle@yahoo.com> - 2026-07-19 07:27 -0400
            Re: How to print entire .txt file... PDF? Acrobat? Paul <nospam@needed.invalid> - 2026-07-19 09:28 -0400
            Re: How to print entire .txt file... PDF? Acrobat? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2026-07-19 15:33 -0700
      Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-18 21:32 -0400
  Re: How to print entire .txt file Print Text <invalid@invalid.invalid> - 2026-07-18 19:30 +0100
    Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-18 21:48 -0400
      Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-20 13:11 -0400
  Re: How to print entire .txt file... using PRINT command "Mr. Man-wai Chang" <toylet.toylet@gmail.com> - 2026-07-19 03:11 +0800
    Re: How to print entire .txt file... using PRINT command micky <NONONOmisc07@fmguy.com> - 2026-07-20 07:19 -0400
  Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-18 15:13 -0400
  Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-18 21:48 +0100
    Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-18 22:03 +0100
      Re: How to print entire .txt file "Mr. Man-wai Chang" <toylet.toylet@gmail.com> - 2026-07-19 08:48 +0800
    Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-19 22:50 +0200
      Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-19 22:06 +0100
        Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-19 23:24 +0200
          Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-20 01:16 +0100
            Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-20 03:26 +0200
            Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-19 22:57 -0400
            Re: How to print entire .txt file Chris <ithinkiam@gmail.com> - 2026-07-20 07:45 +0000
          Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-20 07:19 -0400
            Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-20 08:09 -0400
              Getting UTF-8 in Agen, was: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-20 10:07 -0400
              Re: How to print entire .txt file Frank Slootweg <this@ddress.is.invalid> - 2026-07-20 17:51 +0000
            Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-20 14:25 +0200
              Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-20 09:36 -0400
              Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-20 19:05 +0100
                Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-20 14:23 -0400
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-20 21:06 +0200
                Re: How to print entire .txt file Frank Slootweg <this@ddress.is.invalid> - 2026-07-20 19:51 +0000
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-20 22:04 +0200
                Re: How to print entire .txt file Frank Slootweg <this@ddress.is.invalid> - 2026-07-21 12:57 +0000
                Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-21 11:38 -0400
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-21 19:47 +0200
                Re: How to print entire .txt file Frank Slootweg <this@ddress.is.invalid> - 2026-07-21 19:00 +0000
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-21 21:19 +0200
                Re: How to print entire .txt file Chris <ithinkiam@gmail.com> - 2026-07-21 17:53 +0000
                Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-21 22:51 +0100
                Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-21 18:41 -0400
                Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-22 01:36 +0100
                Re: How to print entire .txt file Sam E <no.email@here.invalid> - 2026-07-22 15:53 +0000
                Re: How to print entire .txt file Frank Slootweg <this@ddress.is.invalid> - 2026-07-22 14:16 +0000
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-23 11:05 +0200
                Re: How to print entire .txt file Frank Slootweg <this@ddress.is.invalid> - 2026-07-23 13:42 +0000
                OT buggy websites (was: Re: How to print entire .txt file) "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-23 15:14 +0100
                Re: OT buggy websites "Carlos E. R." <robin_listas@es.invalid> - 2026-07-23 18:45 +0200
                Re: OT buggy websites "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-23 20:01 +0100
                Re: OT buggy websites "Carlos E. R." <robin_listas@es.invalid> - 2026-07-23 22:22 +0200
                Re: OT buggy websites micky <NONONOmisc07@fmguy.com> - 2026-07-23 17:37 -0400
                Re: OT buggy websites Paul <nospam@needed.invalid> - 2026-07-23 20:24 -0400
                Re: OT buggy websites (was: Re: How to print entire .txt file) Mark Lloyd <not.email@all.invalid> - 2026-07-24 17:00 +0000
                Re: OT buggy websites "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-24 19:36 +0100
                Re: OT buggy websites Mark Lloyd <not.email@all.invalid> - 2026-07-25 17:19 +0000
                Re: OT buggy websites "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-25 21:39 +0100
                Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-23 11:07 -0400
                Re: How to print entire .txt file "....winston" <winstonmvp@gmail.com> - 2026-07-23 13:41 -0400
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-23 19:55 +0200
                Re: How to print entire .txt file "....winston" <winstonmvp@gmail.com> - 2026-07-24 01:10 -0400
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-24 14:21 +0200
                Re: How to print entire .txt file "....winston" <winstonmvp@gmail.com> - 2026-07-24 09:32 -0400
                Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-24 10:09 -0400
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-24 21:49 +0200
                Re: How to print entire .txt file Maria Sophia <mariasophia@comprehension.com> - 2026-07-24 15:15 -0700
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-25 12:57 +0200
                Re: How to print entire .txt file Maria Sophia <mariasophia@comprehension.com> - 2026-07-25 08:15 -0700
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-25 19:14 +0200
                Re: How to print entire .txt file Maria Sophia <mariasophia@comprehension.com> - 2026-07-25 11:03 -0700
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-25 21:17 +0200
                Re: How to print entire .txt file Maria Sophia <mariasophia@comprehension.com> - 2026-07-25 16:05 -0700
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-26 15:04 +0200
                Re: How to print entire .txt file Maria Sophia <mariasophia@comprehension.com> - 2026-07-26 12:36 -0700
                Re: How to print entire .txt file Frank Slootweg <this@ddress.is.invalid> - 2026-07-26 18:22 +0000
                Re: How to print entire .txt file "Mr. Man-wai Chang" <toylet.toylet@gmail.com> - 2026-07-25 01:18 +0800
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-24 21:57 +0200
                Re: How to print entire .txt file "....winston" <winstonmvp@gmail.com> - 2026-07-24 23:51 -0400
                Re: How to print entire .txt file "Mr. Man-wai Chang" <toylet.toylet@gmail.com> - 2026-07-26 09:01 +0800
                Re: How to print entire .txt file Frank Slootweg <this@ddress.is.invalid> - 2026-07-24 10:25 +0000
                Re: How to print entire .txt file "....winston" <winstonmvp@gmail.com> - 2026-07-24 09:23 -0400
                Re: How to print entire .txt file Frank Slootweg <this@ddress.is.invalid> - 2026-07-24 13:47 +0000
                Re: How to print entire .txt file "....winston" <winstonmvp@gmail.com> - 2026-07-25 00:05 -0400
                Re: How to print entire .txt file Frank Slootweg <this@ddress.is.invalid> - 2026-07-25 10:11 +0000
                Re: How to print entire .txt file "....winston" <winstonmvp@gmail.com> - 2026-07-25 11:30 -0400
  Re: How to print entire .txt file knuttle <keith_nuttle@yahoo.com> - 2026-07-18 17:44 -0400
    Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-18 21:46 -0400
      Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-18 22:54 -0400
        Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-19 00:09 -0400
          Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-20 10:29 -0400
      Re: How to print entire .txt file Herbert Kleebauer <klee@unibwm.de> - 2026-07-19 09:41 +0200
        Re: How to print entire .txt file Chris <ithinkiam@gmail.com> - 2026-07-19 16:54 +0000
        Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-20 07:35 -0400
          Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-20 07:44 -0400
            Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-20 19:12 +0100
          Re: How to print entire .txt file Daniel70 <daniel47@nomail.afraid.org> - 2026-07-20 22:51 +1000
            Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-20 09:30 -0400
              Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-20 19:30 +0100
                Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-20 19:13 -0400
      Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-19 09:27 +0100
        Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-19 10:18 -0400
        Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-20 07:53 -0400
          Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-20 12:55 -0400
            Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-20 14:17 -0400
          Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-20 19:48 +0100
            Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-20 19:20 -0400
      Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-20 14:32 +0200
        Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-20 09:27 -0400
          Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-20 13:22 -0400
  Re: How to print entire  .txt file JJ <jj4public@gmail.com> - 2026-07-19 17:40 +0700
    Re: How to print entire  .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-20 09:27 -0400
    Re: How to print entire  .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-24 08:34 -0400
      Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-24 14:40 +0200
        Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-24 20:06 +0100
          Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-24 15:17 -0400
          Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-24 22:01 +0200
            Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-24 22:09 +0100
              Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-24 23:15 +0200
                Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-24 19:56 -0400
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-25 13:05 +0200
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-25 21:48 +0200
            Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-24 23:09 +0200
          Re: How to print entire .txt file Frank Slootweg <this@ddress.is.invalid> - 2026-07-25 10:26 +0000
            Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-25 15:27 +0100
              Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-25 11:49 -0400
                Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-25 17:17 +0100
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-25 19:27 +0200
                Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-25 21:58 +0100
              Re: How to print entire .txt file Frank Slootweg <this@ddress.is.invalid> - 2026-07-26 18:28 +0000
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-26 22:03 +0200
                Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-26 21:32 +0100
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-26 22:48 +0200
                Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-27 14:50 +0100
                Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-27 20:10 +0200
                Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-08-02 20:42 -0400
                Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-26 16:11 -0400
            Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-25 17:02 -0400
              Re: How to print entire .txt file Frank Slootweg <this@ddress.is.invalid> - 2026-07-26 18:42 +0000
                Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-26 16:32 -0400
                Re: How to print entire .txt file Hank Rogers <Hank@nospam.invalid> - 2026-07-26 18:02 -0500
  Re: How to print entire .txt file Brian Gregory <void-invalid-dead-dontuse@email.invalid> - 2026-07-20 15:53 +0100
    Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-20 20:02 +0100
      Re: How to print entire .txt file Brian Gregory <void-invalid-dead-dontuse@email.invalid> - 2026-07-23 20:02 +0100
        Re: How to print entire .txt file "J. P. Gilliver" <G6JPG@255soft.uk> - 2026-07-23 20:26 +0100
    Re: How to print entire .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-23 17:47 -0400
      Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-23 21:12 -0400
        Re: How to print entire .txt file "Carlos E. R." <robin_listas@es.invalid> - 2026-07-24 14:48 +0200
          Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-24 14:35 -0400
  Re: How to print entire  .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-21 22:58 -0400
    Re: How to print entire .txt file Brian Gregory <void-invalid-dead-dontuse@email.invalid> - 2026-07-23 20:04 +0100
    Re: How to print entire .txt file Paul <nospam@needed.invalid> - 2026-07-25 01:01 -0400
  Re: How to print entire  .txt file micky <NONONOmisc07@fmguy.com> - 2026-07-25 20:47 -0400

csiph-web