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


Groups > comp.os.vms > #58407

Re: VMS Features I Wish Linux Had

Newsgroups comp.os.vms
Subject Re: VMS Features I Wish Linux Had
References (4 earlier) <00B0A911.CA43AF13@SendSpamHere.ORG> <njoicg$lv7$2@Iltempo.Update.UU.SE> <00B0A98F.74BDDC75@SendSpamHere.ORG> <njphlo$sa6$1@Iltempo.Update.UU.SE> <00B0A9E3.8B84DB8F@SendSpamHere.ORG>
From VAXman- @SendSpamHere.ORG
Message-ID <00B0AA63.7138A5C4@SendSpamHere.ORG> (permalink)
Organization c.2016 Brian Schenkenberger. Prior employers of copyright holder and their agents must first obtain written permission to copy this posting.
Date 2016-06-15 11:53 +0000

Show all headers | View raw


In article <njq0bp$ndo$1@dont-email.me>, David Froble <davef@tsoft-inc.com> writes:
>VAXman- @SendSpamHere.ORG wrote:
>> In article <njphlo$sa6$1@Iltempo.Update.UU.SE>, Johnny Billquist <bqt@softjar.se> writes:
>>> On 2016-06-14 12:35, VAXman-@SendSpamHere.ORG wrote:
>>>> In article <njoicg$lv7$2@Iltempo.Update.UU.SE>, Johnny Billquist <bqt@softjar.se> writes:
>>>>> On 2016-06-13 21:36, VAXman-@SendSpamHere.ORG wrote:
>>>>>> In article <njmdvo$vo0$1@Iltempo.Update.UU.SE>, Johnny Billquist <bqt@softjar.se> writes:
>>>>>>> On 2016-06-13 14:59, Bob Koehler wrote:
>>>>>>>> In article <njeel9$fq3$1@dont-email.me>, "John E. Malmberg" <wb8tyw@qsl.net_work> writes:
>>>>>>>>> One issue with the VMS terminal line editing is because it is handled in
>>>>>>>>> the driver, it does not have access to the filesystem to allow it to do
>>>>>>>>> filename completion.
>>>>>>>>    Which belongs in the CLI, not the terminal driver.  The CLI should be
>>>>>>>>    doing it's own command line editing,instead of leaning on the limited
>>>>>>>>    editing in the driver.
>>>>>>> I don't agree. I want command line editing, no matter if I'm at the CLI,
>>>>>>> or in some user application. And I do not consider it to be a good
>>>>>>> system design that every program should include their own version of
>>>>>>> commmand line editing.
>>>>>> In VMS, what do you think processes command lines?  Assuming you're using
>>>>>> the VMS CLI callback in yor program(s).  If it's just stupid unix-line -X
>>>>>> switches, etc., then you're on your own.
>>>>> Uh... What if I do a read in my program...? How would CLI editing come
>>>>> into play there? Are you suggesting that all terminal I/O should be done
>>>>> by callbacks to the CLI instead of issuing a QIO?
>>>> Explain?  A 'read' of what? ...from where?
>>> A read of a string, from a terminal, to a program.
>>>
>>> In BASIC:
>>>
>>> LINPUT FOO$
>>>
>>> In MACRO-11:
>>>
>>> QIOW$S  #IO.RLB,#TILUN,#TIEFN,,#IOSB,,<#BUF,#BUFSIZ>
>>>
>>> In C:
>>>
>>> fgets(buffer, bufsiz, stdin);
>>>
>>> In FORTRAN-77:
>>>
>>>     READ(5,10) STR
>>> 10  FORMAT(1A80)
>>>
>>>
>>> It should not be that hard to get. ;-)
>> 
>> And those things don't work?  Sure they do but where is there any implication
>> that you should be able to edit the input in those?
>> 
>
>Well, I had this simple program laying around, and used it as an example.
>
>10      Input "Temp F"; t
>         GoTo 99 Unless t <> 0.
>
>         c = ( t - 32 ) * 5 / 9
>         Print c
>
>         GoTo 10
>
>99      End
>
>Ready
>
>run
>TEMP    14-JUN-2016 18:24
>
>Temp F? 123
>DFE90A::DFE 18:24:13 BASIC     CPU=00:00:01.28 PF=2638 IO=789 MEM=1140
>Temp F? 423
>  217.222
>
>Note, I typed 123, then a ^T to get on a new line to leave the 123 there, then 3 
>left arrows and a 4.  The data ended up being 423.  Is that what's being asked?

???

After CTRL-T, assuming it wasn't disabled, your prompt should have been:

Temp F? 123

You then moved the cursor backward and replace 1 with 4.

That's some of it.   Now, enter enough characters to fill the line and cause
a carriage return.  Now try backspacing. ;)
 
-- 
VAXman- A Bored Certified VMS Kernel Mode Hacker    VAXman(at)TMESIS(dot)ORG

I speak to machines with the voice of humanity.

Back to comp.os.vms | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-06-09 20:37 -0700
  Re: VMS Features I Wish Linux Had "John E. Malmberg" <wb8tyw@qsl.net_work> - 2016-06-10 08:17 -0500
    Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-10 17:04 +0200
    Re: VMS Features I Wish Linux Had osuvman50@gmail.com - 2016-06-10 08:34 -0700
    Re: VMS Features I Wish Linux Had David Froble <davef@tsoft-inc.com> - 2016-06-10 12:12 -0400
      Re: VMS Features I Wish Linux Had Jan-Erik Soderholm <jan-erik.soderholm@telia.com> - 2016-06-10 20:28 +0200
        Re: VMS Features I Wish Linux Had Simon Clubley <clubley@remove_me.eisner.decus.org-Earth.UFP> - 2016-06-10 18:32 +0000
          Re: VMS Features I Wish Linux Had Jan-Erik Soderholm <jan-erik.soderholm@telia.com> - 2016-06-10 20:44 +0200
      Re: VMS Features I Wish Linux Had Stephen Hoffman <seaohveh@hoffmanlabs.invalid> - 2016-06-10 15:35 -0400
      Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-11 09:07 +0200
        Re: VMS Features I Wish Linux Had David Froble <davef@tsoft-inc.com> - 2016-06-11 10:52 -0400
          Re: VMS Features I Wish Linux Had Jan-Erik Soderholm <jan-erik.soderholm@telia.com> - 2016-06-11 16:59 +0200
          Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-12 11:12 +0200
            Re: VMS Features I Wish Linux Had Jan-Erik Soderholm <jan-erik.soderholm@telia.com> - 2016-06-12 12:32 +0200
              Re: VMS Features I Wish Linux Had johnwallace4@yahoo.co.uk - 2016-06-12 04:50 -0700
              Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-12 14:12 +0200
                Re: VMS Features I Wish Linux Had Jan-Erik Soderholm <jan-erik.soderholm@telia.com> - 2016-06-12 14:47 +0200
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-12 17:14 +0200
                Re: VMS Features I Wish Linux Had Hans Vlems <hvlems@freenet.de> - 2016-06-12 09:40 -0700
                Re: VMS Features I Wish Linux Had "Robert A. Brooks" <FIRST.LAST@vmssoftware.com> - 2016-06-12 16:06 -0400
                Re: VMS Features I Wish Linux Had abrsvc <dansabrservices@yahoo.com> - 2016-06-12 13:19 -0700
                Re: VMS Features I Wish Linux Had Stephen Hoffman <seaohveh@hoffmanlabs.invalid> - 2016-06-12 16:32 -0400
                Re: VMS Features I Wish Linux Had helbig@asclothestro.multivax.de (Phillip Helbig (undress to reply)) - 2016-06-12 20:19 +0000
                Re: VMS Features I Wish Linux Had Hans Vlems <hvlems@freenet.de> - 2016-06-12 14:20 -0700
                Re: VMS Features I Wish Linux Had Jan-Erik Soderholm <jan-erik.soderholm@telia.com> - 2016-06-12 21:03 +0200
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-12 21:11 +0200
                Re: VMS Features I Wish Linux Had Jan-Erik Soderholm <jan-erik.soderholm@telia.com> - 2016-06-12 21:16 +0200
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-12 21:27 +0200
                Re: VMS Features I Wish Linux Had David Froble <davef@tsoft-inc.com> - 2016-06-13 14:00 -0400
                Re: VMS Features I Wish Linux Had Jan-Erik Soderholm <jan-erik.soderholm@telia.com> - 2016-06-13 21:35 +0200
                Re: VMS Features I Wish Linux Had kludge@panix.com (Scott Dorsey) - 2016-06-14 11:28 -0400
                Re: VMS Features I Wish Linux Had Bill Gunshannon <bill.gunshannon@gmail.com> - 2016-06-16 10:31 -0400
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-16 14:47 +0000
                Re: VMS Features I Wish Linux Had Bill Gunshannon <bill.gunshannon@gmail.com> - 2016-06-16 12:19 -0400
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-16 16:44 +0000
                Re: VMS Features I Wish Linux Had Simon Clubley <clubley@remove_me.eisner.decus.org-Earth.UFP> - 2016-06-16 18:23 +0000
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-16 21:26 +0000
                VMS and Sweden, was: Re: VMS Features I Wish Linux Had Simon Clubley <clubley@remove_me.eisner.decus.org-Earth.UFP> - 2016-06-14 19:33 +0000
                Re: VMS and Sweden, was: Re: VMS Features I Wish Linux Had Jan-Erik Soderholm <jan-erik.soderholm@telia.com> - 2016-06-14 23:36 +0200
                Re: VMS and Sweden, was: Re: VMS Features I Wish Linux Had Simon Clubley <clubley@remove_me.eisner.decus.org-Earth.UFP> - 2016-06-16 18:18 +0000
                Microsoft buys LinkedIn, Was: Re: VMS and Sweden Paul Sture <nospam@sture.ch> - 2016-06-19 12:39 +0200
                Re: Microsoft buys LinkedIn, Was: Re: VMS and Sweden Simon Clubley <clubley@remove_me.eisner.decus.org-Earth.UFP> - 2016-06-19 13:51 +0000
                Re: Microsoft buys LinkedIn, Was: Re: VMS and Sweden Paul Sture <nospam@sture.ch> - 2016-06-19 19:43 +0200
                Re: Microsoft buys LinkedIn, Was: Re: VMS and Sweden Bill Gunshannon <bill.gunshannon@gmail.com> - 2016-06-19 15:53 -0400
                Re: Microsoft buys LinkedIn, Was: Re: VMS and Sweden lawrencedo99@gmail.com - 2016-06-19 22:44 -0700
                Re: Microsoft buys LinkedIn, Was: Re: VMS and Sweden Bill Gunshannon <bill.gunshannon@gmail.com> - 2016-06-20 13:21 -0400
                Re: Microsoft buys LinkedIn, Was: Re: VMS and Sweden lawrencedo99@gmail.com - 2016-06-21 07:02 -0700
                Re: Microsoft buys LinkedIn, Was: Re: VMS and Sweden   VAXman-  @SendSpamHere.ORG - 2016-06-20 11:25 +0000
                Re: Microsoft buys LinkedIn, Was: Re: VMS and Sweden Paul Sture <nospam@sture.ch> - 2016-06-19 22:02 +0200
                Re: VMS Features I Wish Linux Had koehler@eisner.nospam.decuserve.org (Bob Koehler) - 2016-06-13 16:53 -0400
                Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-06-12 13:34 -0700
                Re: VMS Features I Wish Linux Had David Froble <davef@tsoft-inc.com> - 2016-06-13 13:54 -0400
                Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-06-12 13:32 -0700
                Re: VMS Features I Wish Linux Had Kerry Main <kerry.main@backtothefutureit.com> - 2016-06-13 13:07 +0000
                Re: VMS Features I Wish Linux Had David Froble <davef@tsoft-inc.com> - 2016-06-13 14:06 -0400
                Re: VMS Features I Wish Linux Had David Froble <davef@tsoft-inc.com> - 2016-06-13 13:48 -0400
                Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-06-13 13:41 -0700
                Re: VMS Features I Wish Linux Had John Reagan <xyzzy1959@gmail.com> - 2016-06-13 13:47 -0700
                Re: VMS Features I Wish Linux Had Kerry Main <kerry.main@backtothefutureit.com> - 2016-06-13 22:34 +0000
                Re: VMS Features I Wish Linux Had Stephen Hoffman <seaohveh@hoffmanlabs.invalid> - 2016-06-13 20:22 -0400
                Re: VMS Features I Wish Linux Had Kerry Main <kerry.main@backtothefutureit.com> - 2016-06-14 04:26 +0000
                Re: VMS Features I Wish Linux Had "Craig A. Berry" <craigberry@nospam.mac.com> - 2016-06-14 18:59 -0500
                Re: VMS Features I Wish Linux Had Stephen Hoffman <seaohveh@hoffmanlabs.invalid> - 2016-06-14 21:11 -0400
                Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-06-15 02:32 -0700
            Re: VMS Features I Wish Linux Had Henry Crun <mike@rechtman.com> - 2016-06-12 16:54 +0300
              Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-12 15:52 +0000
                Re: VMS Features I Wish Linux Had Henry Crun <mike@rechtman.com> - 2016-06-12 20:42 +0300
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-12 19:35 +0000
                Re: VMS Features I Wish Linux Had David Froble <davef@tsoft-inc.com> - 2016-06-13 14:10 -0400
            Re: VMS Features I Wish Linux Had David Froble <davef@tsoft-inc.com> - 2016-06-13 13:43 -0400
    Filename completion, was: Re: VMS Features I Wish Linux Had Simon Clubley <clubley@remove_me.eisner.decus.org-Earth.UFP> - 2016-06-10 18:29 +0000
      Re: Filename completion, was: Re: VMS Features I Wish Linux Had Paul Sture <nospam@sture.ch> - 2016-06-10 22:14 +0200
        Re: Filename completion, was: Re: VMS Features I Wish Linux Had Jan-Erik Soderholm <jan-erik.soderholm@telia.com> - 2016-06-11 00:06 +0200
    Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-10 20:05 +0000
      Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-11 09:12 +0200
        Re: VMS Features I Wish Linux Had Joukj <joukj@hrem.nano.tudelft.nl> - 2016-06-13 09:37 +0200
          Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-13 09:56 +0200
          Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-13 10:53 +0000
    Re: VMS Features I Wish Linux Had Bill Gunshannon <bill.gunshannon@gmail.com> - 2016-06-11 09:33 -0400
      Re: VMS Features I Wish Linux Had David Froble <davef@tsoft-inc.com> - 2016-06-11 10:53 -0400
      Re: VMS Features I Wish Linux Had Simon Clubley <clubley@remove_me.eisner.decus.org-Earth.UFP> - 2016-06-11 15:27 +0000
        Re: VMS Features I Wish Linux Had moroney@world.std.spaamtrap.com (Michael Moroney) - 2016-06-12 03:15 +0000
      Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-12 11:19 +0200
        Re: VMS Features I Wish Linux Had helbig@asclothestro.multivax.de (Phillip Helbig (undress to reply)) - 2016-06-12 18:55 +0000
    Re: VMS Features I Wish Linux Had koehler@eisner.nospam.decuserve.org (Bob Koehler) - 2016-06-13 08:59 -0400
      Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-13 15:55 +0200
        Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-13 19:36 +0000
          Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-06-13 13:46 -0700
            Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-13 21:20 +0000
              Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-06-13 17:27 -0700
                Re: VMS Features I Wish Linux Had johnwallace4@yahoo.co.uk - 2016-06-13 23:55 -0700
                Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-06-14 00:12 -0700
                Re: VMS Features I Wish Linux Had koehler@eisner.nospam.decuserve.org (Bob Koehler) - 2016-06-14 09:36 -0400
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-14 10:32 +0000
              Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-14 11:24 +0200
              Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-14 10:42 +0000
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-14 20:12 +0200
              Re: VMS Features I Wish Linux Had koehler@eisner.nospam.decuserve.org (Bob Koehler) - 2016-06-14 09:32 -0400
                Re: Parsers (was Re: VMS Features I Wish Linux Had) Stephen Hoffman <seaohveh@hoffmanlabs.invalid> - 2016-06-14 10:58 -0400
                Re: Parsers (was Re: VMS Features I Wish Linux Had)   VAXman-  @SendSpamHere.ORG - 2016-06-14 15:25 +0000
          Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-14 11:22 +0200
            Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-14 10:35 +0000
              Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-14 20:16 +0200
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-14 20:37 +0000
                Re: VMS Features I Wish Linux Had David Froble <davef@tsoft-inc.com> - 2016-06-14 18:27 -0400
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-15 11:24 +0200
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-15 11:57 +0000
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-15 14:39 +0200
                Re: VMS Features I Wish Linux Had Stephen Hoffman <seaohveh@hoffmanlabs.invalid> - 2016-06-15 08:58 -0400
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-15 15:30 +0200
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-15 14:35 +0000
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-15 19:29 +0200
                Re: VMS Features I Wish Linux Had Chris Scheers <chris@applied-synergy.com> - 2016-06-15 13:26 -0500
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-16 11:18 +0200
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-16 09:57 +0000
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-16 13:58 +0200
                Re: VMS Features I Wish Linux Had Chris Scheers <chris@applied-synergy.com> - 2016-06-16 15:20 -0500
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-21 17:17 +0200
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-15 11:21 +0200
                Re: VMS Features I Wish Linux Had Paul Sture <nospam@sture.ch> - 2016-06-19 12:59 +0200
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-15 11:53 +0000
        Re: VMS Features I Wish Linux Had koehler@eisner.nospam.decuserve.org (Bob Koehler) - 2016-06-13 16:51 -0400
          Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-14 11:28 +0200
            Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-14 10:47 +0000
              Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-14 20:17 +0200
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-14 20:55 +0000
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-15 11:31 +0200
                Re: VMS Features I Wish Linux Had David Froble <davef@tsoft-inc.com> - 2016-06-14 18:29 -0400
            Re: VMS Features I Wish Linux Had johnwallace4@yahoo.co.uk - 2016-06-14 04:14 -0700
              Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-14 11:25 +0000
              Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-14 20:21 +0200
            Re: VMS Features I Wish Linux Had koehler@eisner.nospam.decuserve.org (Bob Koehler) - 2016-06-14 09:44 -0400
              Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-14 20:22 +0200
                Re: VMS Features I Wish Linux Had Simon Clubley <clubley@remove_me.eisner.decus.org-Earth.UFP> - 2016-06-14 19:23 +0000
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-15 11:34 +0200
                Re: VMS Features I Wish Linux Had johnwallace4@yahoo.co.uk - 2016-06-15 03:17 -0700
                Re: VMS Features I Wish Linux Had Johnny Billquist <bqt@softjar.se> - 2016-06-15 13:04 +0200
                Re: VMS Features I Wish Linux Had Paul Sture <nospam@sture.ch> - 2016-06-19 05:34 +0200
                Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-06-18 21:45 -0700
                Re: VMS Features I Wish Linux Had Simon Clubley <clubley@remove_me.eisner.decus.org-Earth.UFP> - 2016-06-16 18:31 +0000
                Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-06-15 02:36 -0700
                Re: VMS Features I Wish Linux Had Hans Vlems <hvlems@freenet.de> - 2016-06-15 11:53 -0700
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-06-15 19:10 +0000
                Terminals, was: Re: VMS Features I Wish Linux Had Simon Clubley <clubley@remove_me.eisner.decus.org-Earth.UFP> - 2016-06-16 18:45 +0000
                Re: VMS Features I Wish Linux Had Simon Clubley <clubley@remove_me.eisner.decus.org-Earth.UFP> - 2016-06-16 18:33 +0000
  Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-06-30 02:15 -0700
    Re: VMS Features I Wish Linux Had Steven Schweda <sms.antinode@gmail.com> - 2016-06-30 03:58 -0700
    Re: VMS Features I Wish Linux Had hb <end.of@inter.net> - 2016-06-30 14:25 +0200
    Re: VMS Features I Wish Linux Had Stephen Hoffman <seaohveh@hoffmanlabs.invalid> - 2016-06-30 11:29 -0400
      Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-06-30 15:29 -0700
        Re: VMS Features I Wish Linux Had "Kerry Main" <kemain.nospam@gmail.com> - 2016-06-30 20:59 -0400
          Re: VMS Features I Wish Linux Had Stephen Hoffman <seaohveh@hoffmanlabs.invalid> - 2016-07-01 11:21 -0400
            Re: VMS Features I Wish Linux Had "Kerry Main" <kemain.nospam@gmail.com> - 2016-07-01 12:41 -0400
              Re: VMS Features I Wish Linux Had Stephen Hoffman <seaohveh@hoffmanlabs.invalid> - 2016-07-01 14:39 -0400
                Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-07-01 15:13 -0700
                Re: VMS Features I Wish Linux Had "Kerry Main" <kemain.nospam@gmail.com> - 2016-07-01 21:31 -0400
                Re: VMS Features I Wish Linux Had Stephen Hoffman <seaohveh@hoffmanlabs.invalid> - 2016-07-02 16:33 -0400
                Re: VMS Features I Wish Linux Had "Kerry Main" <kemain.nospam@gmail.com> - 2016-07-02 16:57 -0400
                Re: VMS Features I Wish Linux Had Stephen Hoffman <seaohveh@hoffmanlabs.invalid> - 2016-07-02 17:34 -0400
                Re: VMS Features I Wish Linux Had helbig@asclothestro.multivax.de (Phillip Helbig (undress to reply)) - 2016-07-03 06:40 +0000
                Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-07-03 00:09 -0700
                Re: VMS Features I Wish Linux Had "Kerry Main" <kemain.nospam@gmail.com> - 2016-07-03 08:12 -0400
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-07-03 12:35 +0000
                Re: VMS Features I Wish Linux Had Paul Sture <nospam@sture.ch> - 2016-07-03 10:50 +0200
                Re: VMS Features I Wish Linux Had Simon Clubley <clubley@remove_me.eisner.decus.org-Earth.UFP> - 2016-07-03 11:05 +0000
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-07-03 12:29 +0000
                Re: VMS Features I Wish Linux Had Simon Clubley <clubley@remove_me.eisner.decus.org-Earth.UFP> - 2016-07-03 11:44 +0000
                Re: VMS Features I Wish Linux Had johnwallace4@yahoo.co.uk - 2016-07-03 06:59 -0700
                Re: VMS Features I Wish Linux Had Simon Clubley <clubley@remove_me.eisner.decus.org-Earth.UFP> - 2016-07-03 15:58 +0000
                Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-07-03 14:38 -0700
                Re: VMS Features I Wish Linux Had "Craig A. Berry" <craigberry@nospam.mac.com> - 2016-07-03 17:53 -0500
                Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-07-03 16:19 -0700
                Re: VMS Features I Wish Linux Had "Craig A. Berry" <craigberry@nospam.mac.com> - 2016-07-03 21:03 -0500
                Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-07-03 21:11 -0700
                Re: VMS Features I Wish Linux Had johnwallace4@yahoo.co.uk - 2016-07-04 05:48 -0700
                Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-07-04 16:55 -0700
                Re: VMS Features I Wish Linux Had lawrencedo99@gmail.com - 2016-07-03 14:33 -0700
                Re: VMS Features I Wish Linux Had   VAXman-  @SendSpamHere.ORG - 2016-07-02 20:05 +0000

csiph-web