1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 16:35:28 +02:00

get-history: add page (#7126)

This commit is contained in:
NoPreserveRoot 2021-10-23 22:25:21 -04:00 committed by GitHub
parent c99cc4e254
commit 9b4ded37e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,16 @@
# Get-History
> Display PowerShell command history.
> More information: <https://docs.microsoft.com/powershell/module/microsoft.powershell.core/get-history>.
- Display the commands history list with ID:
`Get-History`
- Get PowerShell history item by ID:
`Get-History -Id {{id}}`
- Display the last N commands:
`Get-History -Count {{count}}`