Rocksolid Light

News from da outaworlds

mail  files  register  groups  login

Message-ID:  

BOFH excuse #446: Mailer-daemon is busy burning your message in hell.


comp / comp.os.linux.advocacy / Re: Command Line Versus Command Line

SubjectAuthor
* Command Line Versus Command LineLawrence D'Oliveiro
+* Re: Command Line Versus Command LineChris Ahlstrom
|`* Re: Command Line Versus Command Linerbowman
| +* Re: Command Line Versus Command LineLawrence D'Oliveiro
| |`* Re: Command Line Versus Command Linerbowman
| | `* Re: Command Line Versus Command LineLawrence D'Oliveiro
| |  `* Re: Command Line Versus Command Linecandycanearter07
| |   `* Re: Command Line Versus Command LineChris Ahlstrom
| |    `- Re: Command Line Versus Command Linecandycanearter07
| `* Re: Command Line Versus Command LineChris Ahlstrom
|  `* Re: Command Line Versus Command Linerbowman
|   `* Re: Command Line Versus Command LineChris Ahlstrom
|    `* Re: Command Line Versus Command Linerbowman
|     `* Re: Command Line Versus Command Linevallor
|      `- Re: Command Line Versus Command LineChris Ahlstrom
`* Re: Command Line Versus Command LineDFS
 `* Re: Command Line Versus Command LineJoel
  +* Re: Command Line Versus Command Linevallor
  |+- Re: Command Line Versus Command LineDFS
  |+- Re: Command Line Versus Command Linerbowman
  |`* Re: Command Line Versus Command LineLawrence D'Oliveiro
  | +- Re: Command Line Versus Command LineChris Ahlstrom
  | `* Re: Command Line Versus Command Linecandycanearter07
  |  `* Re: Command Line Versus Command LineLawrence D'Oliveiro
  |   `- Re: Command Line Versus Command LineChris Ahlstrom
  `* Re: Command Line Versus Command LineDFS
   `- Re: Command Line Versus Command LineLawrence D'Oliveiro

Pages:12
Subject: Command Line Versus Command Line
From: Lawrence D'Oliv
Newsgroups: comp.os.linux.advocacy
Organization: A noiseless patient Spider
Date: Fri, 7 Jun 2024 10:38 UTC
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ldo@nz.invalid (Lawrence D'Oliveiro)
Newsgroups: comp.os.linux.advocacy
Subject: Command Line Versus Command Line
Date: Fri, 7 Jun 2024 10:38:55 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 36
Message-ID: <v3unvu$21g4g$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Fri, 07 Jun 2024 12:38:55 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="21a6995757d724b8d83dd14f044d030a";
logging-data="2146448"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+vyyYwSbHx287kXxrFWejp"
User-Agent: Pan/0.158 (Avdiivka; )
Cancel-Lock: sha1:ogPePAuWFZGKKhepvC1MMiZwS/Q=
View all headers

Microsoft copied its idea of the command line from Gary Kildall’s
CP/M, which in turn copied it from the DEC operating systems of the
1970s. This is just a simple string/array of characters. Implicit in
these systems is the idea that one program cannot directly execute
another; it has to go through a “command interpreter”, which has to be
given a “command” to “interpret”.

Compare the Unix concept of a command line: it is not a “line” at all, but
an array of strings. One program can directly execute another without
having to go through a shell: it can construct and pass this argument
array without having to worry about “special” characters that might be
(mis)interpreted by some CLI/shell intermediary -- unless you choose to go
through such an intermediary.

Those old DEC systems tended to have more complex syntax for their
commands than what is supported by your typical *nix command-line
program. But then, the sheer wealth of *nix command-line tools,
compared to what is available on Microsoft DOS/Windows/NT/PowerShell
and indeed all the proprietary OSes put together, shows that the
*nix-style command line is far more versatile. In *nix, most of the
sophistication is delegated to the shell language that is used to
invoke these programs, while the programs themselves can usually parse
their arguments using a fairly modest amount of code, with little or
no need for some more sophisticated command-line-handling library.

Just to reinforce the direction that Microsoft took, Dave Cutler,
the brains behind Windows NT, also came from DEC, where he was
part of a nest of Unix-haters.

So Microsoft’s recent rediscovery that “the command line is cool”
remains hampered by this brain-dead underlying architecture. The
requirement that most if not all process creation has to be mediated
by some command-line “shell” makes it quite clumsy to emulate the kind
of multi-process pipelines that are all in a day’s work on a Linux or
other *nix system. It also leads to some interesting security
vulnerabilities.

Subject: Re: Command Line Versus Command Line
From: Chris Ahlstrom
Newsgroups: comp.os.linux.advocacy
Organization: None
Date: Fri, 7 Jun 2024 11:13 UTC
References: 1
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Fri, 7 Jun 2024 07:13:32 -0400
Organization: None
Lines: 30
Message-ID: <v3uq0s$21r31$2@dont-email.me>
References: <v3unvu$21g4g$2@dont-email.me>
Reply-To: OFeem1987@teleworm.us
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Fri, 07 Jun 2024 13:13:32 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="92101555c07628cc35707a462d8516ad";
logging-data="2157665"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/x7okWWQ0p60QS4osT/YhO"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:0A6SAht6yMUOcrf+1DcpaMhxD9k=
X-Mutt: The most widely-used MUA
X-Slrn: Why use anything else?
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
View all headers

Lawrence D'Oliveiro wrote this copyrighted missive and expects royalties:

> <brevsnip>
>
> Those old DEC systems tended to have more complex syntax for their
> commands than what is supported by your typical *nix command-line
> program.

I remember the PIP (peripheral interchange program). About all I remember is
that is was complex. About all I remember is that is was complex.

> <more brevsnip>

> So Microsoft’s recent rediscovery that “the command line is cool”
> remains hampered by this brain-dead underlying architecture. The
> requirement that most if not all process creation has to be mediated
> by some command-line “shell”...

You sure about that?

https://learn.microsoft.com/en-us/windows/win32/procthread/creating-processes

> ...makes it quite clumsy to emulate the kind
> of multi-process pipelines that are all in a day’s work on a Linux or
> other *nix system. It also leads to some interesting security
> vulnerabilities.

--
Q: What is the sound of one cat napping?
A: Mu.

Subject: Re: Command Line Versus Command Line
From: rbowman
Newsgroups: comp.os.linux.advocacy
Date: Fri, 7 Jun 2024 16:50 UTC
References: 1 2
Path: eternal-september.org!news.eternal-september.org!feeder3.eternal-september.org!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: bowman@montana.com (rbowman)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: 7 Jun 2024 16:50:05 GMT
Lines: 12
Message-ID: <lcgs1tFq0i5U2@mid.individual.net>
References: <v3unvu$21g4g$2@dont-email.me> <v3uq0s$21r31$2@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Trace: individual.net 7Oz6agswDOpXNmB1UZ5QHgmDJh49L2vYmv7DURW3MqaI3pPw3H
Cancel-Lock: sha1:Xb3KgeimbMUnjQodLSvJYRxogQo= sha256:kdDDsWSfxqPklmd1QKw2Vi/9f/J5FYxL8EPS23QKhVE=
User-Agent: Pan/0.149 (Bellevue; 4c157ba)
View all headers

On Fri, 7 Jun 2024 07:13:32 -0400, Chris Ahlstrom wrote:

> I remember the PIP (peripheral interchange program). About all I
> remember is that is was complex. About all I remember is that is was
> complex.

http://gaby.de/cpm/manuals/archive/cpm22htm/ch1.htm#Section_1.6.4

Yeah, but you could get data from the PTR.

I'll admit i get the same queasy feeling from 'dd'. I think dd may stand
for Destructive Disaster.

Subject: Re: Command Line Versus Command Line
From: Lawrence D'Oliv
Newsgroups: comp.os.linux.advocacy
Organization: A noiseless patient Spider
Date: Fri, 7 Jun 2024 23:53 UTC
References: 1 2 3
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ldo@nz.invalid (Lawrence D'Oliveiro)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Fri, 7 Jun 2024 23:53:57 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 11
Message-ID: <v406ik$29fla$4@dont-email.me>
References: <v3unvu$21g4g$2@dont-email.me> <v3uq0s$21r31$2@dont-email.me>
<lcgs1tFq0i5U2@mid.individual.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 08 Jun 2024 01:53:57 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="41ddd3104c6f00811ea81eed5288e7ff";
logging-data="2408106"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19sUX2mjsvN/SCSvTeSk7Ax"
User-Agent: Pan/0.158 (Avdiivka; )
Cancel-Lock: sha1:TSfRcBtWBTjvnFSCEpNT+Dj9Wus=
View all headers

On 7 Jun 2024 16:50:05 GMT, rbowman wrote:

> I'll admit i get the same queasy feeling from 'dd'. I think dd may stand
> for Destructive Disaster.

If you look at the man page, the synopsis line says “copy and convert”. It
was going to be called “cc”, but that name had already been taken by the C
compiler. So they went with the next letter in the alphabet instead.

I have had accidents with rsync, too. But it’s still a wonderful tool that
I wouldn’t want to be without.

Subject: Re: Command Line Versus Command Line
From: rbowman
Newsgroups: comp.os.linux.advocacy
Date: Sat, 8 Jun 2024 00:12 UTC
References: 1 2 3 4
Path: eternal-september.org!news.eternal-september.org!feeder3.eternal-september.org!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: bowman@montana.com (rbowman)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: 8 Jun 2024 00:12:07 GMT
Lines: 10
Message-ID: <lchlunFtl66U2@mid.individual.net>
References: <v3unvu$21g4g$2@dont-email.me> <v3uq0s$21r31$2@dont-email.me>
<lcgs1tFq0i5U2@mid.individual.net> <v406ik$29fla$4@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Trace: individual.net ekooOIwEknimi5BT/MNwnwgjLQIKyx6bDQIuPiwBnVq6ETSCGd
Cancel-Lock: sha1:UIqbDXCbHNi33kIagO+ylBL9oAk= sha256:MEVAudKDVENpDaw0oi03peZ8MhK2zGvLRKNHpmx8j8k=
User-Agent: Pan/0.149 (Bellevue; 4c157ba)
View all headers

On Fri, 7 Jun 2024 23:53:57 -0000 (UTC), Lawrence D'Oliveiro wrote:

> I have had accidents with rsync, too. But it’s still a wonderful tool
> that I wouldn’t want to be without.

It was on Windows so it wasn't rsync but our support people had a similar
tool. They would edit configuration files on the server and then copy them
to all the other machines. Tough shit if another machine had been
configured differently for some reason.

Subject: Re: Command Line Versus Command Line
From: Lawrence D'Oliv
Newsgroups: comp.os.linux.advocacy
Organization: A noiseless patient Spider
Date: Sat, 8 Jun 2024 00:20 UTC
References: 1 2 3 4 5
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ldo@nz.invalid (Lawrence D'Oliveiro)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Sat, 8 Jun 2024 00:20:01 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 21
Message-ID: <v4083g$29nhl$1@dont-email.me>
References: <v3unvu$21g4g$2@dont-email.me> <v3uq0s$21r31$2@dont-email.me>
<lcgs1tFq0i5U2@mid.individual.net> <v406ik$29fla$4@dont-email.me>
<lchlunFtl66U2@mid.individual.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 08 Jun 2024 02:20:01 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="41ddd3104c6f00811ea81eed5288e7ff";
logging-data="2416181"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+DmMEysFgPUyErVCVq+kGn"
User-Agent: Pan/0.158 (Avdiivka; )
Cancel-Lock: sha1:ZjUqf6HTR6BDCnYS7eLRdiyBnos=
View all headers

On 8 Jun 2024 00:12:07 GMT, rbowman wrote:

> On Fri, 7 Jun 2024 23:53:57 -0000 (UTC), Lawrence D'Oliveiro wrote:
>
>> I have had accidents with rsync, too. But it’s still a wonderful tool
>> that I wouldn’t want to be without.
>
> It was on Windows so it wasn't rsync but our support people had a
> similar tool. They would edit configuration files on the server and then
> copy them to all the other machines. Tough shit if another machine had
> been configured differently for some reason.

See, the Debian installer has a procedure for dealing with this when
upgrading a package: it compares the config files being potentially
overwritten with the default ones from the old package being replaced; if
they match, they can be safely overwritten by the new package. Otherwise
you get asked what you want to do: leave your changes in place, or
overwrite them, or something else.

But of course that only works for configs kept as text files, which can be
easily diff’d to identify changes.

Subject: Re: Command Line Versus Command Line
From: Chris Ahlstrom
Newsgroups: comp.os.linux.advocacy
Organization: None
Date: Sat, 8 Jun 2024 10:41 UTC
References: 1 2 3
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Sat, 8 Jun 2024 06:41:55 -0400
Organization: None
Lines: 25
Message-ID: <v41chk$2ipqm$1@dont-email.me>
References: <v3unvu$21g4g$2@dont-email.me> <v3uq0s$21r31$2@dont-email.me>
<lcgs1tFq0i5U2@mid.individual.net>
Reply-To: OFeem1987@teleworm.us
Injection-Date: Sat, 08 Jun 2024 12:41:56 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="0bfa1d85c1d2a92ca4ab17ef3136bc5f";
logging-data="2713430"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX199ei661yLOwOB/6dpPqBYj"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:b3ztS2cFwpGVeEXl26D95+A6OoI=
X-Slrn: Why use anything else?
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
X-Mutt: The most widely-used MUA
View all headers

rbowman wrote this copyrighted missive and expects royalties:

> On Fri, 7 Jun 2024 07:13:32 -0400, Chris Ahlstrom wrote:
>
>> I remember the PIP (peripheral interchange program). About all I
>> remember is that is was complex. About all I remember is that is was
>> complex.
>
> http://gaby.de/cpm/manuals/archive/cpm22htm/ch1.htm#Section_1.6.4
>
> Yeah, but you could get data from the PTR.
>
> I'll admit i get the same queasy feeling from 'dd'. I think dd may stand
> for Destructive Disaster.

I used dd once to clone an XP machine at work to make a virtual machine out of
it (IIRC).

dd is indispensible!

Careful with that axe, Eugene!

--
Let me take you a button-hole lower.
-- William Shakespeare, "Love's Labour's Lost"

Subject: Re: Command Line Versus Command Line
From: DFS
Newsgroups: comp.os.linux.advocacy
Date: Sat, 8 Jun 2024 12:56 UTC
References: 1
Path: eternal-september.org!news.eternal-september.org!feeder3.eternal-september.org!border-3.nntp.ord.giganews.com!border-1.nntp.ord.giganews.com!nntp.giganews.com!news-out.netnews.com!postmaster.netnews.com!us4.netnews.com!not-for-mail
X-Trace: DXC=S6IKO6@0KgNN1iZmU4fL3MHWonT5<]0TMQ;nb^V>PUfF5[gZBW6J?LLZHjmnLVPdBMSlS@GLifiKJ[>@DCD?fZ:JMba][>SC2CGf;]EoU=id5F=R<hY6_C9TH
X-Complaints-To: support@blocknews.net
Date: Sat, 8 Jun 2024 08:56:41 -0400
MIME-Version: 1.0
User-Agent: Betterbird (Windows)
From: nospam@dfs.com (DFS)
Subject: Re: Command Line Versus Command Line
Newsgroups: comp.os.linux.advocacy
References: <v3unvu$21g4g$2@dont-email.me>
Content-Language: en-US
In-Reply-To: <v3unvu$21g4g$2@dont-email.me>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Lines: 9
Message-ID: <66645505$5$1412902$882e4bbb@reader.netnews.com>
NNTP-Posting-Host: 127.0.0.1
X-Trace: 1717851397 reader.netnews.com 1412902 127.0.0.1:37037
View all headers

On 6/7/2024 6:38 AM, Lawrence D'Oliveiro wrote:

> command line

Larry Duh, still livin' in the 70s.

Snap out of it.

Subject: Re: Command Line Versus Command Line
From: Joel
Newsgroups: comp.os.linux.advocacy
Date: Sat, 8 Jun 2024 13:07 UTC
References: 1 2
Path: eternal-september.org!news.eternal-september.org!feeder3.eternal-september.org!border-4.nntp.ord.giganews.com!border-1.nntp.ord.giganews.com!nntp.giganews.com!news-out.netnews.com!postmaster.netnews.com!us11.netnews.com!not-for-mail
X-Trace: DXC=DJ06QGngT?\ITXUL480YCWHWonT5<]0T]djI?Uho:Xe[lL51CP6LDL\95GMl]75=8QfL_lW3ZRHbR7@<I4Rf8bAQl3[[dIf;_mV2Do^b@=QS7W
X-Complaints-To: support@blocknews.net
From: joelcrump@gmail.com (Joel)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Sat, 08 Jun 2024 09:07:38 -0400
Message-ID: <jnl86jth7s9m0gn4cvjm5f2h8bm8e6a6hf@4ax.com>
References: <v3unvu$21g4g$2@dont-email.me> <66645505$5$1412902$882e4bbb@reader.netnews.com>
User-Agent: ForteAgent/8.00.32.1272
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
OS: Linux Mint 21.3 Cinnamon, with Wine 9.0 for WinAPI
Lines: 31
NNTP-Posting-Host: 127.0.0.1
X-Trace: 1717852058 reader.netnews.com 2363146 127.0.0.1:39905
View all headers

DFS <nospam@dfs.com> wrote:
>On 6/7/2024 6:38 AM, Lawrence D'Oliveiro wrote:
>
>> command line
>
>Larry Duh, still livin' in the 70s.
>
>Snap out of it.

Wrong, dude, and you *should* know it, you haven't used PowerShell to
install anything, etc., just like one uses the Linux terminal? I
have, when I was running Windows. It's actually an *asset* of the
platform, it shows that if you can tolerate the bloatware, you do have
components that are as nifty as Unix.

--
Joel W. Crump

Amendment XIV
Section 1.

[...] No state shall make or enforce any law which shall
abridge the privileges or immunities of citizens of the
United States; nor shall any state deprive any person of
life, liberty, or property, without due process of law;
nor deny to any person within its jurisdiction the equal
protection of the laws.

Dobbs rewrites this, it is invalid precedent. States are
liable for denying needed abortions, e.g. TX.

Subject: Re: Command Line Versus Command Line
From: vallor
Newsgroups: comp.os.linux.advocacy
Organization: A noiseless patient Spider
Date: Sat, 8 Jun 2024 13:46 UTC
References: 1 2 3
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: vallor@cultnix.org (vallor)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Sat, 8 Jun 2024 13:46:00 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 38
Message-ID: <v41nan$2jq21$1@dont-email.me>
References: <v3unvu$21g4g$2@dont-email.me>
<66645505$5$1412902$882e4bbb@reader.netnews.com>
<jnl86jth7s9m0gn4cvjm5f2h8bm8e6a6hf@4ax.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 08 Jun 2024 15:46:00 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="dd16ccb5749f85d78ead4ca9ace38585";
logging-data="2746433"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18eAnBNIcsiya3wBRQKV1oC"
User-Agent: Pan/0.159 (Vovchansk; ccc58f8; Linux-6.9.3)
Cancel-Lock: sha1:2QwI1r6A5Q0e67u0NWt2O2Hl8SY=
X-Face: \}2`P"_@pS86<'EM:'b.Ml}8IuMK"pV"?FReF$'c.S%u9<Q#U*4QO)$l81M`{Q/n
XL'`91kd%N::LG:=*\35JS0prp\VJN^<s"b#bff@fA7]5lJA.jn,x_d%Md$,{.EZ
View all headers

On Sat, 08 Jun 2024 09:07:38 -0400, Joel <joelcrump@gmail.com> wrote in
<jnl86jth7s9m0gn4cvjm5f2h8bm8e6a6hf@4ax.com>:

> DFS <nospam@dfs.com> wrote:
>>On 6/7/2024 6:38 AM, Lawrence D'Oliveiro wrote:
>>
>>> command line
>>
>>Larry Duh, still livin' in the 70s.
>>
>>Snap out of it.
>
>
> Wrong, dude, and you *should* know it, you haven't used PowerShell to
> install anything, etc., just like one uses the Linux terminal? I have,
> when I was running Windows. It's actually an *asset* of the platform,
> it shows that if you can tolerate the bloatware, you do have components
> that are as nifty as Unix.

They added PowerShell because Unix script-ability was
eating Windows' lunch.

Very surprised DFS (in the new OT thread) was suggesting that RonB
have his wife take manual backups every day. How miserable! Script
that (in PowerShell, if necessary), and then run it with the Scheduler.

These are computers to do our bidding. As was once said
of the Sabbath: the computer was made for mankind, not
mankind made for the computer...

Finally, there's this:

https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-linux?view=powershell-7.4

Yep, there is pwsh for Linux, if you are a masochist...

--
-v

Subject: Re: Command Line Versus Command Line
From: candycanearter07
Newsgroups: comp.os.linux.advocacy
Organization: the-candyden-of-code
Date: Sat, 8 Jun 2024 14:30 UTC
References: 1 2 3 4 5 6
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: candycanearter07@candycanearter07.nomail.afraid (candycanearter07)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Sat, 8 Jun 2024 14:30:03 -0000 (UTC)
Organization: the-candyden-of-code
Lines: 27
Message-ID: <slrnv68qkn.23cp.candycanearter07@candydeb.host.invalid>
References: <v3unvu$21g4g$2@dont-email.me> <v3uq0s$21r31$2@dont-email.me>
<lcgs1tFq0i5U2@mid.individual.net> <v406ik$29fla$4@dont-email.me>
<lchlunFtl66U2@mid.individual.net> <v4083g$29nhl$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 08 Jun 2024 16:30:07 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="e718fad24fa6243e7c6d80130844281a";
logging-data="2791139"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18PnB6E8dQUQwk7JwgPClQu3L3z1/D4+SSzqXC4OKpRUA=="
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:CSeiBthVLwFyU2WQtZjacHOfLDE=
X-Face: b{dPmN&%4|lEo,wUO\"KLEOu5N_br(N2Yuc5/qcR5i>9-!^e\.Tw9?/m0}/~:UOM:Zf]%
b+ V4R8q|QiU/R8\|G\WpC`-s?=)\fbtNc&=/a3a)r7xbRI]Vl)r<%PTriJ3pGpl_/B6!8pe\btzx
`~R! r3.0#lHRE+^Gro0[cjsban'vZ#j7,?I/tHk{s=TFJ:H?~=]`O*~3ZX`qik`b:.gVIc-[$t/e
ZrQsWJ >|l^I_[pbsIqwoz.WGA]<D
View all headers

Lawrence D'Oliveiro <ldo@nz.invalid> wrote at 00:20 this Saturday (GMT):
> On 8 Jun 2024 00:12:07 GMT, rbowman wrote:
>
>> On Fri, 7 Jun 2024 23:53:57 -0000 (UTC), Lawrence D'Oliveiro wrote:
>>
>>> I have had accidents with rsync, too. But it’s still a wonderful tool
>>> that I wouldn’t want to be without.
>>
>> It was on Windows so it wasn't rsync but our support people had a
>> similar tool. They would edit configuration files on the server and then
>> copy them to all the other machines. Tough shit if another machine had
>> been configured differently for some reason.
>
> See, the Debian installer has a procedure for dealing with this when
> upgrading a package: it compares the config files being potentially
> overwritten with the default ones from the old package being replaced; if
> they match, they can be safely overwritten by the new package. Otherwise
> you get asked what you want to do: leave your changes in place, or
> overwrite them, or something else.
>
> But of course that only works for configs kept as text files, which can be
> easily diff’d to identify changes.

You can still theoretically diff any binary file?
--
user <candycane> is generated from /dev/urandom

Subject: Re: Command Line Versus Command Line
From: DFS
Newsgroups: comp.os.linux.advocacy
Date: Sat, 8 Jun 2024 15:04 UTC
References: 1 2 3
Path: eternal-september.org!news.eternal-september.org!feeder3.eternal-september.org!border-3.nntp.ord.giganews.com!border-1.nntp.ord.giganews.com!nntp.giganews.com!news-out.netnews.com!postmaster.netnews.com!us1.netnews.com!not-for-mail
X-Trace: DXC=6@l4S4KM_c[ShVMDdmZ2O_HWonT5<]0T]Q;nb^V>PUfV5[gZBW6J?L\b4Xlnec8YjT^\I;T1VOHjY2k5F4QB74XTMba][>SC2CWf;]EoU=id5V=R<hY6_C9TX
X-Complaints-To: support@blocknews.net
Date: Sat, 8 Jun 2024 11:04:06 -0400
MIME-Version: 1.0
User-Agent: Betterbird (Windows)
Subject: Re: Command Line Versus Command Line
Newsgroups: comp.os.linux.advocacy
References: <v3unvu$21g4g$2@dont-email.me>
<66645505$5$1412902$882e4bbb@reader.netnews.com>
<jnl86jth7s9m0gn4cvjm5f2h8bm8e6a6hf@4ax.com>
Content-Language: en-US
From: nospam@dfs.com (DFS)
In-Reply-To: <jnl86jth7s9m0gn4cvjm5f2h8bm8e6a6hf@4ax.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Lines: 29
Message-ID: <666472e6$3$1943521$882e4bbb@reader.netnews.com>
NNTP-Posting-Host: 127.0.0.1
X-Trace: 1717859046 reader.netnews.com 1943521 127.0.0.1:37615
View all headers

On 6/8/2024 9:07 AM, Joel wrote:
> DFS <nospam@dfs.com> wrote:
>> On 6/7/2024 6:38 AM, Lawrence D'Oliveiro wrote:
>>
>>> command line
>>
>> Larry Duh, still livin' in the 70s.
>>
>> Snap out of it.
>
>
> Wrong, dude, and you *should* know it, you haven't used PowerShell to
> install anything, etc., just like one uses the Linux terminal? I
> have, when I was running Windows. It's actually an *asset* of the
> platform, it shows that if you can tolerate the bloatware, you do have
> components that are as nifty as Unix.

Yeah, I've done a certain amt of stuff with PowerShell, but I much
prefer a bash shell and *nix utilities.

Recently I was in WSL Ubuntu, downloading compsci course materials from
CalTech and Stanford universities, ie

$ wget -r https://cs249i.stanford.edu/

FINISHED --2024-06-08 10:28:21--
Total wall clock time: 5.6s
Downloaded: 22 files, 124M in 1.9s (63.9 MB/s)

Subject: Re: Command Line Versus Command Line
From: DFS
Newsgroups: comp.os.linux.advocacy
Date: Sat, 8 Jun 2024 15:50 UTC
References: 1 2 3 4
Path: eternal-september.org!news.eternal-september.org!feeder3.eternal-september.org!border-3.nntp.ord.giganews.com!nntp.giganews.com!news-out.netnews.com!postmaster.netnews.com!us1.netnews.com!not-for-mail
X-Trace: DXC=WWR1Yoo9F4g9C2W:c[HQbiHWonT5<]0TmQ;nb^V>PUff5[gZBW6J?Llb4Xlnec8Yjd^\I;T1VOHji2k5F4QB74XdMba][>SC2Cgf;]EoU=id5f=R<hY6_C9Th
X-Complaints-To: support@blocknews.net
Date: Sat, 8 Jun 2024 11:50:31 -0400
MIME-Version: 1.0
User-Agent: Betterbird (Windows)
Subject: Re: Command Line Versus Command Line
Newsgroups: comp.os.linux.advocacy
References: <v3unvu$21g4g$2@dont-email.me>
<66645505$5$1412902$882e4bbb@reader.netnews.com>
<jnl86jth7s9m0gn4cvjm5f2h8bm8e6a6hf@4ax.com> <v41nan$2jq21$1@dont-email.me>
Content-Language: en-US
From: nospam@dfs.com (DFS)
In-Reply-To: <v41nan$2jq21$1@dont-email.me>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Lines: 17
Message-ID: <66647dc7$1$1943529$882e4bbb@reader.netnews.com>
NNTP-Posting-Host: 127.0.0.1
X-Trace: 1717861831 reader.netnews.com 1943529 127.0.0.1:60827
View all headers

On 6/8/2024 9:46 AM, vallor wrote:

> Very surprised DFS (in the new OT thread) was suggesting that RonB
> have his wife take manual backups every day. How miserable!

Why do you hate your files? There's nothing better than keeping them
organized by hand.

> Script
> that (in PowerShell, if necessary), and then run it with the Scheduler.

I wrote a python sync/backup program that I use from time to time, when
the manual process would be too time-consuming.

Subject: Re: Command Line Versus Command Line
From: rbowman
Newsgroups: comp.os.linux.advocacy
Date: Sat, 8 Jun 2024 19:47 UTC
References: 1 2 3 4
Path: eternal-september.org!news.eternal-september.org!feeder3.eternal-september.org!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: bowman@montana.com (rbowman)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: 8 Jun 2024 19:47:49 GMT
Lines: 14
Message-ID: <lcjqr4F8ugpU5@mid.individual.net>
References: <v3unvu$21g4g$2@dont-email.me> <v3uq0s$21r31$2@dont-email.me>
<lcgs1tFq0i5U2@mid.individual.net> <v41chk$2ipqm$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Trace: individual.net OwDEwh887G8g856dOHABcwK13m5T4Ym7RHh+YcpxlrgsWjKnrN
Cancel-Lock: sha1:6GgigRkFllSwof+1bL9ZJujdWdg= sha256:NAF0aE0S0dt1S4BpWtzbkS6IwzEqWFECIOxZzVSMGhw=
User-Agent: Pan/0.149 (Bellevue; 4c157ba)
View all headers

On Sat, 8 Jun 2024 06:41:55 -0400, Chris Ahlstrom wrote:

> I used dd once to clone an XP machine at work to make a virtual machine
> out of it (IIRC).
>
> dd is indispensible!
>
> Careful with that axe, Eugene!

Our marketing people would set up a laptop with the latest software
releases and data for demo purposes and then use Ghost to clone laptops
for the sales people. Great idea unless someone pllugged them into the
LAN. They all had the same hostname and chaos would ensure.

Subject: Re: Command Line Versus Command Line
From: rbowman
Newsgroups: comp.os.linux.advocacy
Date: Sat, 8 Jun 2024 20:09 UTC
References: 1 2 3 4
Path: eternal-september.org!news.eternal-september.org!feeder3.eternal-september.org!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: bowman@montana.com (rbowman)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: 8 Jun 2024 20:09:58 GMT
Lines: 16
Message-ID: <lcjs4mF8ugpU6@mid.individual.net>
References: <v3unvu$21g4g$2@dont-email.me>
<66645505$5$1412902$882e4bbb@reader.netnews.com>
<jnl86jth7s9m0gn4cvjm5f2h8bm8e6a6hf@4ax.com> <v41nan$2jq21$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Trace: individual.net /KHRXNbQddbeoeYGj6NtNgGwG3BbXn94BQRtA7+agYaoGHyYnD
Cancel-Lock: sha1:BK7ZeVNVP/dJF0At7KR/hL4t/VQ= sha256:ImkhcSklw9lEtgSC/u9yrpF2JQPrJCAaGvi+D8Mrurk=
User-Agent: Pan/0.149 (Bellevue; 4c157ba)
View all headers

On Sat, 8 Jun 2024 13:46:00 -0000 (UTC), vallor wrote:

> They added PowerShell because Unix script-ability was eating Windows'
> lunch.

https://www.theregister.com/2023/10/10/microsoft_says_vbscript_will_be/

https://learn.microsoft.com/en-us/windows-server/administration/windows-
commands/wscript

The second link leads me to believe that Windows Script Host isn't going
away, only VBScript. I don't know if JScript is still around but engines
for a number of languages have been developed that WSH can use.

Subject: Re: Command Line Versus Command Line
From: Lawrence D'Oliv
Newsgroups: comp.os.linux.advocacy
Organization: A noiseless patient Spider
Date: Sat, 8 Jun 2024 23:53 UTC
References: 1 2 3 4
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ldo@nz.invalid (Lawrence D'Oliveiro)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Sat, 8 Jun 2024 23:53:46 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 7
Message-ID: <v42qua$2u4lh$1@dont-email.me>
References: <v3unvu$21g4g$2@dont-email.me>
<66645505$5$1412902$882e4bbb@reader.netnews.com>
<jnl86jth7s9m0gn4cvjm5f2h8bm8e6a6hf@4ax.com>
<666472e6$3$1943521$882e4bbb@reader.netnews.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 09 Jun 2024 01:53:47 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="e98d6c6f2f9dfe52aa544b0d04bc91ad";
logging-data="3084977"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18xyHHrCfPxM29w3VzemAl/"
User-Agent: Pan/0.158 (Avdiivka; )
Cancel-Lock: sha1:2or4ubiekmfytxhcc/oVPP8o/ao=
View all headers

On Sat, 8 Jun 2024 11:04:06 -0400, DFS wrote:

> Yeah, I've done a certain amt of stuff with PowerShell, but I much
> prefer a bash shell and *nix utilities.

So Microsoft’s attempts to embrace the “cool of the command line” aren’t
cutting it with you?

Subject: Re: Command Line Versus Command Line
From: Lawrence D'Oliv
Newsgroups: comp.os.linux.advocacy
Organization: A noiseless patient Spider
Date: Sat, 8 Jun 2024 23:56 UTC
References: 1 2 3 4
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ldo@nz.invalid (Lawrence D'Oliveiro)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Sat, 8 Jun 2024 23:56:56 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 15
Message-ID: <v42r48$2u4lh$2@dont-email.me>
References: <v3unvu$21g4g$2@dont-email.me>
<66645505$5$1412902$882e4bbb@reader.netnews.com>
<jnl86jth7s9m0gn4cvjm5f2h8bm8e6a6hf@4ax.com> <v41nan$2jq21$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 09 Jun 2024 01:56:57 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="e98d6c6f2f9dfe52aa544b0d04bc91ad";
logging-data="3084977"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18BT6N1iv1HeWB+lS0GzTDK"
User-Agent: Pan/0.158 (Avdiivka; )
Cancel-Lock: sha1:+M0leXjv9VpeoEa6IJPrhmGtxls=
View all headers

On Sat, 8 Jun 2024 13:46:00 -0000 (UTC), vallor wrote:

> Yep, there is pwsh for Linux, if you are a masochist...

Talking about masochism ...

Microsoft added “wget” and “curl” commands to PowerShell, and these
are also included in the Linux port. Trouble is, they don’t work like
the URL-retrieval programs of the same names as commonly found on
Linux systems. Someone raised an issue on GitHub proposing getting rid
of these command aliases, to avoid clashes with genuine
implementations of these commands. But Microsoft has refused, on the
grounds that it would break existing scripts.

http://www.theregister.co.uk/2016/08/23/your_wget_is_broken_and_should_die_powershellers_tell_microsoft/

Subject: Re: Command Line Versus Command Line
From: Chris Ahlstrom
Newsgroups: comp.os.linux.advocacy
Organization: None
Date: Sun, 9 Jun 2024 13:31 UTC
References: 1 2 3 4 5
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Sun, 9 Jun 2024 09:31:05 -0400
Organization: None
Lines: 22
Message-ID: <v44aqp$3ha9u$2@dont-email.me>
References: <v3unvu$21g4g$2@dont-email.me> <v3uq0s$21r31$2@dont-email.me>
<lcgs1tFq0i5U2@mid.individual.net> <v41chk$2ipqm$1@dont-email.me>
<lcjqr4F8ugpU5@mid.individual.net>
Reply-To: OFeem1987@teleworm.us
Injection-Date: Sun, 09 Jun 2024 15:31:06 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="4e01b622ece8884808552355f3118ad0";
logging-data="3713342"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+zddq07QjIQERwbcEwkAA0"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:nq8jGxiBvX0EBMNCN3gw7CDWsps=
X-Slrn: Why use anything else?
X-Mutt: The most widely-used MUA
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
View all headers

rbowman wrote this copyrighted missive and expects royalties:

> On Sat, 8 Jun 2024 06:41:55 -0400, Chris Ahlstrom wrote:
>
>> I used dd once to clone an XP machine at work to make a virtual machine
>> out of it (IIRC).
>>
>> dd is indispensible!
>>
>> Careful with that axe, Eugene!
>
> Our marketing people would set up a laptop with the latest software
> releases and data for demo purposes and then use Ghost to clone laptops
> for the sales people. Great idea unless someone pllugged them into the
> LAN. They all had the same hostname and chaos would ensure.

Good ol' Active Directory. Jeezuzz.

--
Every cloud engenders not a storm.
-- William Shakespeare, "Henry VI"

Subject: Re: Command Line Versus Command Line
From: Chris Ahlstrom
Newsgroups: comp.os.linux.advocacy
Organization: None
Date: Sun, 9 Jun 2024 13:33 UTC
References: 1 2 3 4 5
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Sun, 9 Jun 2024 09:33:56 -0400
Organization: None
Lines: 23
Message-ID: <v44b05$3ha9u$3@dont-email.me>
References: <v3unvu$21g4g$2@dont-email.me>
<66645505$5$1412902$882e4bbb@reader.netnews.com>
<jnl86jth7s9m0gn4cvjm5f2h8bm8e6a6hf@4ax.com> <v41nan$2jq21$1@dont-email.me>
<v42r48$2u4lh$2@dont-email.me>
Reply-To: OFeem1987@teleworm.us
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 09 Jun 2024 15:33:57 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="4e01b622ece8884808552355f3118ad0";
logging-data="3713342"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19krfwnZz/Vu3MHnhttA8qI"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:ibYofsmKzMgreFHj4Lxj3fuw9GY=
X-Slrn: Why use anything else?
X-Mutt: The most widely-used MUA
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
View all headers

Lawrence D'Oliveiro wrote this copyrighted missive and expects royalties:

> On Sat, 8 Jun 2024 13:46:00 -0000 (UTC), vallor wrote:
>
>> Yep, there is pwsh for Linux, if you are a masochist...
>
> Talking about masochism ...
>
> Microsoft added “wget” and “curl” commands to PowerShell, and these
> are also included in the Linux port. Trouble is, they don’t work like
> the URL-retrieval programs of the same names as commonly found on
> Linux systems. Someone raised an issue on GitHub proposing getting rid
> of these command aliases, to avoid clashes with genuine
> implementations of these commands. But Microsoft has refused, on the
> grounds that it would break existing scripts.
>
> http://www.theregister.co.uk/2016/08/23/your_wget_is_broken_and_should_die_powershellers_tell_microsoft/

All "loads" <heh heh> lead to Microsoft.

--
Q: What do agnostic, insomniac dyslexics do at night?
A: Stay awake and wonder if there's a dog.

Subject: Re: Command Line Versus Command Line
From: Chris Ahlstrom
Newsgroups: comp.os.linux.advocacy
Organization: None
Date: Sun, 9 Jun 2024 13:35 UTC
References: 1 2 3 4 5 6 7
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Sun, 9 Jun 2024 09:35:33 -0400
Organization: None
Lines: 32
Message-ID: <v44b35$3ha9u$4@dont-email.me>
References: <v3unvu$21g4g$2@dont-email.me> <v3uq0s$21r31$2@dont-email.me>
<lcgs1tFq0i5U2@mid.individual.net> <v406ik$29fla$4@dont-email.me>
<lchlunFtl66U2@mid.individual.net> <v4083g$29nhl$1@dont-email.me>
<slrnv68qkn.23cp.candycanearter07@candydeb.host.invalid>
Reply-To: OFeem1987@teleworm.us
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 09 Jun 2024 15:35:33 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="4e01b622ece8884808552355f3118ad0";
logging-data="3713342"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19ccc8LbfsVJTVTO1uII056"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:l4p7El/6FRVd/piL/dJhWrA4ILk=
X-Mutt: The most widely-used MUA
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
X-Slrn: Why use anything else?
View all headers

candycanearter07 wrote this copyrighted missive and expects royalties:

> Lawrence D'Oliveiro <ldo@nz.invalid> wrote at 00:20 this Saturday (GMT):
>> On 8 Jun 2024 00:12:07 GMT, rbowman wrote:
>>
>>> On Fri, 7 Jun 2024 23:53:57 -0000 (UTC), Lawrence D'Oliveiro wrote:
>>>
>>>> I have had accidents with rsync, too. But it’s still a wonderful tool
>>>> that I wouldn’t want to be without.
>>>
>>> It was on Windows so it wasn't rsync but our support people had a
>>> similar tool. They would edit configuration files on the server and then
>>> copy them to all the other machines. Tough shit if another machine had
>>> been configured differently for some reason.
>>
>> See, the Debian installer has a procedure for dealing with this when
>> upgrading a package: it compares the config files being potentially
>> overwritten with the default ones from the old package being replaced; if
>> they match, they can be safely overwritten by the new package. Otherwise
>> you get asked what you want to do: leave your changes in place, or
>> overwrite them, or something else.
>>
>> But of course that only works for configs kept as text files, which can be
>> easily diff’d to identify changes.
>
> You can still theoretically diff any binary file?

A decent tool for that is vbindiff. There are some decent GUI binary differs as
well.

--
You have no real enemies.

Subject: Re: Command Line Versus Command Line
From: rbowman
Newsgroups: comp.os.linux.advocacy
Date: Sun, 9 Jun 2024 19:14 UTC
References: 1 2 3 4 5 6
Path: eternal-september.org!news.eternal-september.org!feeder3.eternal-september.org!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: bowman@montana.com (rbowman)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: 9 Jun 2024 19:14:45 GMT
Lines: 8
Message-ID: <lcmd95Fkt8vU3@mid.individual.net>
References: <v3unvu$21g4g$2@dont-email.me> <v3uq0s$21r31$2@dont-email.me>
<lcgs1tFq0i5U2@mid.individual.net> <v41chk$2ipqm$1@dont-email.me>
<lcjqr4F8ugpU5@mid.individual.net> <v44aqp$3ha9u$2@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Trace: individual.net GRdLnYHoIadWvAdpu/7puwalkivPMs9JMLzZtfG/jGckBl5Vx0
Cancel-Lock: sha1:vlyBlcbynIDLr6m/lJqi8xwOyBo= sha256:08eodSHT+QYXNiV6W078qc0DWvLi11PekINCuKmlaOM=
User-Agent: Pan/0.149 (Bellevue; 4c157ba)
View all headers

On Sun, 9 Jun 2024 09:31:05 -0400, Chris Ahlstrom wrote:

> Good ol' Active Directory. Jeezuzz.

https://thehackernews.com/2023/10/microsoft-to-phase-out-ntlm-in-favor-
of.html

Slowly moving forward. Very slowly.

Subject: Re: Command Line Versus Command Line
From: vallor
Newsgroups: comp.os.linux.advocacy
Organization: A noiseless patient Spider
Date: Sun, 9 Jun 2024 21:26 UTC
References: 1 2 3 4 5 6 7
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: vallor@cultnix.org (vallor)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Sun, 9 Jun 2024 21:26:56 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 21
Message-ID: <v456n0$3jvrd$1@dont-email.me>
References: <v3unvu$21g4g$2@dont-email.me> <v3uq0s$21r31$2@dont-email.me>
<lcgs1tFq0i5U2@mid.individual.net> <v41chk$2ipqm$1@dont-email.me>
<lcjqr4F8ugpU5@mid.individual.net> <v44aqp$3ha9u$2@dont-email.me>
<lcmd95Fkt8vU3@mid.individual.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 09 Jun 2024 23:26:56 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="f0892abaeb14993ff0459c54b9526c7e";
logging-data="3800941"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+ed/wuYHCPjw/H1D7drMtQ"
User-Agent: Pan/0.159 (Vovchansk; 764d7cd; Linux-6.9.3)
Cancel-Lock: sha1:AcIOcrS2Ws46TQA+Eoqy7XY9zzo=
X-Face: \}2`P"_@pS86<'EM:'b.Ml}8IuMK"pV"?FReF$'c.S%u9<Q#U*4QO)$l81M`{Q/n
XL'`91kd%N::LG:=*\35JS0prp\VJN^<s"b#bff@fA7]5lJA.jn,x_d%Md$,{.EZ
View all headers

On 9 Jun 2024 19:14:45 GMT, rbowman <bowman@montana.com> wrote in
<lcmd95Fkt8vU3@mid.individual.net>:

> On Sun, 9 Jun 2024 09:31:05 -0400, Chris Ahlstrom wrote:
>
>> Good ol' Active Directory. Jeezuzz.
>
> https://thehackernews.com/2023/10/microsoft-to-phase-out-ntlm-in-favor-
> of.html
>
> Slowly moving forward. Very slowly.

Thought I'd mention that this is FOSS, implemented in 1988 as
part of MIT's Project Athena.

https://en.wikipedia.org/wiki/Kerberos_(protocol)#History_and_development

Hopefully Microsoft doesn't try to add proprietary BS to it.

--
-v

Subject: Re: Command Line Versus Command Line
From: Chris Ahlstrom
Newsgroups: comp.os.linux.advocacy
Organization: None
Date: Mon, 10 Jun 2024 11:52 UTC
References: 1 2 3 4 5 6 7 8
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Mon, 10 Jun 2024 07:52:42 -0400
Organization: None
Lines: 33
Message-ID: <v46pea$e0ac$1@dont-email.me>
References: <v3unvu$21g4g$2@dont-email.me> <v3uq0s$21r31$2@dont-email.me>
<lcgs1tFq0i5U2@mid.individual.net> <v41chk$2ipqm$1@dont-email.me>
<lcjqr4F8ugpU5@mid.individual.net> <v44aqp$3ha9u$2@dont-email.me>
<lcmd95Fkt8vU3@mid.individual.net> <v456n0$3jvrd$1@dont-email.me>
Reply-To: OFeem1987@teleworm.us
Injection-Date: Mon, 10 Jun 2024 13:52:43 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="bd521ce90435151cd0eb0340997274ae";
logging-data="459084"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+wIah9n2jakDfQK9Cz8pJn"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:Exg8IIDxvNyEByBxrioF/U9GipI=
X-Slrn: Why use anything else?
X-Mutt: The most widely-used MUA
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
View all headers

vallor wrote this copyrighted missive and expects royalties:

> On 9 Jun 2024 19:14:45 GMT, rbowman <bowman@montana.com> wrote in
> <lcmd95Fkt8vU3@mid.individual.net>:
>
>> On Sun, 9 Jun 2024 09:31:05 -0400, Chris Ahlstrom wrote:
>>
>>> Good ol' Active Directory. Jeezuzz.
>>
>> https://thehackernews.com/2023/10/microsoft-to-phase-out-ntlm-in-favor-
>> of.html
>>
>> Slowly moving forward. Very slowly.
>
> Thought I'd mention that this is FOSS, implemented in 1988 as
> part of MIT's Project Athena.
>
> https://en.wikipedia.org/wiki/Kerberos_(protocol)#History_and_development
>
> Hopefully Microsoft doesn't try to add proprietary BS to it.

https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-kile/2a32282e-dd48-4ad9-a542-609804b02cc9

Kerberos Protocol Extensions

:-D

https://www.securityweek.com/microsoft-ships-urgent-fixes-for-critical-flaws-in-windows-kerberos-hyper-v/

:-D

--
You are always busy.

Subject: Re: Command Line Versus Command Line
From: candycanearter07
Newsgroups: comp.os.linux.advocacy
Organization: the-candyden-of-code
Date: Tue, 11 Jun 2024 02:40 UTC
References: 1 2 3 4 5 6 7 8
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: candycanearter07@candycanearter07.nomail.afraid (candycanearter07)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Tue, 11 Jun 2024 02:40:11 -0000 (UTC)
Organization: the-candyden-of-code
Lines: 35
Message-ID: <slrnv6fa40.2hg.candycanearter07@candydeb.host.invalid>
References: <v3unvu$21g4g$2@dont-email.me> <v3uq0s$21r31$2@dont-email.me>
<lcgs1tFq0i5U2@mid.individual.net> <v406ik$29fla$4@dont-email.me>
<lchlunFtl66U2@mid.individual.net> <v4083g$29nhl$1@dont-email.me>
<slrnv68qkn.23cp.candycanearter07@candydeb.host.invalid>
<v44b35$3ha9u$4@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 11 Jun 2024 04:40:11 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="4b8de5e0235d9d4138e4d44dba56bb9d";
logging-data="913008"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/IJry2xw496JwGOhqKXthMkQOxOHl8U0P/AheljkT1Kw=="
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:Lq8Se03OjWgAPgoxwMTMWES2sx0=
X-Face: b{dPmN&%4|lEo,wUO\"KLEOu5N_br(N2Yuc5/qcR5i>9-!^e\.Tw9?/m0}/~:UOM:Zf]%
b+ V4R8q|QiU/R8\|G\WpC`-s?=)\fbtNc&=/a3a)r7xbRI]Vl)r<%PTriJ3pGpl_/B6!8pe\btzx
`~R! r3.0#lHRE+^Gro0[cjsban'vZ#j7,?I/tHk{s=TFJ:H?~=]`O*~3ZX`qik`b:.gVIc-[$t/e
ZrQsWJ >|l^I_[pbsIqwoz.WGA]<D
View all headers

Chris Ahlstrom <OFeem1987@teleworm.us> wrote at 13:35 this Sunday (GMT):
> candycanearter07 wrote this copyrighted missive and expects royalties:
>
>> Lawrence D'Oliveiro <ldo@nz.invalid> wrote at 00:20 this Saturday (GMT):
>>> On 8 Jun 2024 00:12:07 GMT, rbowman wrote:
>>>
>>>> On Fri, 7 Jun 2024 23:53:57 -0000 (UTC), Lawrence D'Oliveiro wrote:
>>>>
>>>>> I have had accidents with rsync, too. But it’s still a wonderful tool
>>>>> that I wouldn’t want to be without.
>>>>
>>>> It was on Windows so it wasn't rsync but our support people had a
>>>> similar tool. They would edit configuration files on the server and then
>>>> copy them to all the other machines. Tough shit if another machine had
>>>> been configured differently for some reason.
>>>
>>> See, the Debian installer has a procedure for dealing with this when
>>> upgrading a package: it compares the config files being potentially
>>> overwritten with the default ones from the old package being replaced; if
>>> they match, they can be safely overwritten by the new package. Otherwise
>>> you get asked what you want to do: leave your changes in place, or
>>> overwrite them, or something else.
>>>
>>> But of course that only works for configs kept as text files, which can be
>>> easily diff’d to identify changes.
>>
>> You can still theoretically diff any binary file?
>
> A decent tool for that is vbindiff. There are some decent GUI binary differs as
> well.

Oh, thanks for the tip.
--
user <candycane> is generated from /dev/urandom

Subject: Re: Command Line Versus Command Line
From: candycanearter07
Newsgroups: comp.os.linux.advocacy
Organization: the-candyden-of-code
Date: Tue, 11 Jun 2024 02:40 UTC
References: 1 2 3 4 5
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: candycanearter07@candycanearter07.nomail.afraid (candycanearter07)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Command Line Versus Command Line
Date: Tue, 11 Jun 2024 02:40:11 -0000 (UTC)
Organization: the-candyden-of-code
Lines: 22
Message-ID: <slrnv6fa5k.2hg.candycanearter07@candydeb.host.invalid>
References: <v3unvu$21g4g$2@dont-email.me>
<66645505$5$1412902$882e4bbb@reader.netnews.com>
<jnl86jth7s9m0gn4cvjm5f2h8bm8e6a6hf@4ax.com> <v41nan$2jq21$1@dont-email.me>
<v42r48$2u4lh$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 11 Jun 2024 04:40:12 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="4b8de5e0235d9d4138e4d44dba56bb9d";
logging-data="913008"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18KDF1ASCPCETkCgnV82dXf6c/qrMHckuBDWJyBQvMYEw=="
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:q5+OEcGQCLrz28wSPET/9X+xB5c=
X-Face: b{dPmN&%4|lEo,wUO\"KLEOu5N_br(N2Yuc5/qcR5i>9-!^e\.Tw9?/m0}/~:UOM:Zf]%
b+ V4R8q|QiU/R8\|G\WpC`-s?=)\fbtNc&=/a3a)r7xbRI]Vl)r<%PTriJ3pGpl_/B6!8pe\btzx
`~R! r3.0#lHRE+^Gro0[cjsban'vZ#j7,?I/tHk{s=TFJ:H?~=]`O*~3ZX`qik`b:.gVIc-[$t/e
ZrQsWJ >|l^I_[pbsIqwoz.WGA]<D
View all headers

Lawrence D'Oliveiro <ldo@nz.invalid> wrote at 23:56 this Saturday (GMT):
> On Sat, 8 Jun 2024 13:46:00 -0000 (UTC), vallor wrote:
>
>> Yep, there is pwsh for Linux, if you are a masochist...
>
> Talking about masochism ...
>
> Microsoft added “wget” and “curl” commands to PowerShell, and these
> are also included in the Linux port. Trouble is, they don’t work like
> the URL-retrieval programs of the same names as commonly found on
> Linux systems. Someone raised an issue on GitHub proposing getting rid
> of these command aliases, to avoid clashes with genuine
> implementations of these commands. But Microsoft has refused, on the
> grounds that it would break existing scripts.
>
> http://www.theregister.co.uk/2016/08/23/your_wget_is_broken_and_should_die_powershellers_tell_microsoft/

Ah, of course. Do you think they're intentionally trying to confuse
Windows users how wget and curl are used?
--
user <candycane> is generated from /dev/urandom

Pages:12

rocksolid light 0.9.8
clearnet tor