Skip to content

Commit

Permalink
Fix #4280 fix #4281 - fix typos (#4282)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdwheeler authored and DCtheGeek committed May 8, 2019
1 parent ffb831f commit 53604b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,11 @@ Paging also reduces CPU utilization because processing transfers to the `Out-Hos
has a complete page ready to display. The cmdlets that precede it in the pipeline pause execution
until the next page of output is available.

You can see the difference Windows Task Manager to monitor CPU and memory used by PowerShell. Run
the following command: `Get-ChildItem C:\Windows -Recurse`. Compare the CPU and memory usage to
this command: `Get-ChildItem C:\Windows -Recurse | Out-Host -Paging`.
You can see how piping impacts CPU and memory usage in the Windows Task Manager by comparing the
following commands:

- `Get-ChildItem C:\Windows -Recurse`
- `Get-ChildItem C:\Windows -Recurse | Out-Host -Paging`

> [!NOTE]
> The **Paging** parameter is not supported by all PowerShell hosts. For example, when you try to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,4 @@ system. The following example creates a new environment variable:
$env:LIB_PATH='/usr/local/lib'
```

Though not required, is it common for environment variable names to use all uppercase letters.
Though not required, it's common for environment variable names to use all uppercase letters.

0 comments on commit 53604b2

Please sign in to comment.