Skip to content

Commit

Permalink
Merge pull request #10596 from MicrosoftDocs/main
Browse files Browse the repository at this point in the history
10/30/2023 PM Publish
  • Loading branch information
Taojunshen authored Oct 30, 2023
2 parents 9222a56 + 1ef7b4a commit 2059532
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
description: Describes the operators that compare values in PowerShell.
Locale: en-US
ms.date: 08/17/2023
ms.date: 10/30/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comparison_operators?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Comparison Operators
Expand Down Expand Up @@ -61,7 +61,9 @@ To make the case-insensitivity explicit, add an `i` after `-`. For example,
`-ieq` is the explicitly case-insensitive version of `-eq`.

String comparisons use the [InvariantCulture][01] for both case-sensitive and
case-insensitive comparisons.
case-insensitive comparisons. The comparisons are between unicode code points
and don't use culture-specific collation ordering. The results are the same
regardless of the current culture.

When the input of an operator is a scalar value, the operator returns a
**Boolean** value. When the input is a collection, the operator returns the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
description: Describes the operators that compare values in PowerShell.
Locale: en-US
ms.date: 08/17/2023
ms.date: 10/30/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comparison_operators?view=powershell-7.2&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Comparison Operators
Expand Down Expand Up @@ -61,7 +61,9 @@ To make the case-insensitivity explicit, add an `i` after `-`. For example,
`-ieq` is the explicitly case-insensitive version of `-eq`.

String comparisons use the [InvariantCulture][01] for both case-sensitive and
case-insensitive comparisons.
case-insensitive comparisons. The comparisons are between unicode code points
and don't use culture-specific collation ordering. The results are the same
regardless of the current culture.

When the input of an operator is a scalar value, the operator returns a
**Boolean** value. When the input is a collection, the operator returns the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
description: Describes the operators that compare values in PowerShell.
Locale: en-US
ms.date: 08/17/2023
ms.date: 10/30/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comparison_operators?view=powershell-7.3&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Comparison Operators
Expand Down Expand Up @@ -61,7 +61,9 @@ To make the case-insensitivity explicit, add an `i` after `-`. For example,
`-ieq` is the explicitly case-insensitive version of `-eq`.

String comparisons use the [InvariantCulture][01] for both case-sensitive and
case-insensitive comparisons.
case-insensitive comparisons. The comparisons are between unicode code points
and don't use culture-specific collation ordering. The results are the same
regardless of the current culture.

When the input of an operator is a scalar value, the operator returns a
**Boolean** value. When the input is a collection, the operator returns the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
description: Describes the operators that compare values in PowerShell.
Locale: en-US
ms.date: 08/17/2023
ms.date: 10/30/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comparison_operators?view=powershell-7.4&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Comparison Operators
Expand Down Expand Up @@ -61,7 +61,9 @@ To make the case-insensitivity explicit, add an `i` after `-`. For example,
`-ieq` is the explicitly case-insensitive version of `-eq`.

String comparisons use the [InvariantCulture][01] for both case-sensitive and
case-insensitive comparisons.
case-insensitive comparisons. The comparisons are between unicode code points
and don't use culture-specific collation ordering. The results are the same
regardless of the current culture.

When the input of an operator is a scalar value, the operator returns a
**Boolean** value. When the input is a collection, the operator returns the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ verbs.

| Verb (alias) | Action | Synonyms to avoid |
| ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------- | ------------------------- |
| [Connect](/dotnet/api/System.Management.Automation.VerbsCommunications.Connect) (cc) | Creates a link between a source and a destination. This verb is paired with `Disconnect`. | Join, Telnet |
| [Connect](/dotnet/api/System.Management.Automation.VerbsCommunications.Connect) (cc) | Creates a link between a source and a destination. This verb is paired with `Disconnect`. | Join, Telnet, Login |
| [Disconnect](/dotnet/api/System.Management.Automation.VerbsCommunications.Disconnect) (dc) | Breaks the link between a source and a destination. This verb is paired with `Connect`. | Break, Logoff |
| [Read](/dotnet/api/System.Management.Automation.VerbsCommunications.Read) (rd) | Acquires information from a source. This verb is paired with `Write`. | Acquire, Prompt, Get |
| [Receive](/dotnet/api/System.Management.Automation.VerbsCommunications.Receive) (rc) | Accepts information sent from a source. This verb is paired with `Send`. | Read, Accept, Peek |
Expand Down
4 changes: 1 addition & 3 deletions reference/docs-conceptual/install/install-rhel.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ available via Linux packaging clients (apt, dnf, yum, etc). These Linux software
on the _Linux package repository for Microsoft products_, [https://packages.microsoft.com][03], also
known as _PMC_.

Installing PowerShell from PMC is the preferred method of installation. The PowerShell RPMs aren't
published to the RHEL 9 repository yet. For RHEL 9, you need to
[install PowerShell via direct download](#installation-via-direct-download).
Installing PowerShell from PMC is the preferred method of installation.

> [!NOTE]
> This script only works for supported versions of RHEL.
Expand Down

0 comments on commit 2059532

Please sign in to comment.