mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-09-01 15:51:29 +08:00
Clear-History: add Dutch translation and update page (#19248)
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
# Clear-History
|
||||
|
||||
> Verwijder vermeldingen uit de Powershell-sessie commandogeschiedenis.
|
||||
> Opmerking: `clhy` kan gebruikt worden als een alias voor `Clear-History`.
|
||||
> Meer informatie: <https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/clear-history>.
|
||||
|
||||
- Verwijder alle geschiedenis van de huidige sessie:
|
||||
|
||||
`Clear-History`
|
||||
|
||||
- Verwijder commando op exacte naam:
|
||||
|
||||
`Clear-History -CommandLine "{{commando}}"`
|
||||
|
||||
- Verwijder meerdere commando's op naam:
|
||||
|
||||
`Clear-History -CommandLine {{"commando1", "commando2", ...}}`
|
||||
|
||||
- Verwijder een specifiek geschiedenisvermelding op ID:
|
||||
|
||||
`Clear-History -Id {{id_nummer}}`
|
||||
|
||||
- Verwijder meerdere ID's:
|
||||
|
||||
`Clear-History -Id {{id1, id2, ...}}`
|
||||
|
||||
- Verwijder opdrachten binnen een bereik van ID's:
|
||||
|
||||
`Clear-History -Id ({{start_id}}..{{eind_id}})`
|
||||
|
||||
- Toon wat er verwijderd zou worden:
|
||||
|
||||
`Clear-History -WhatIf`
|
||||
|
||||
- Vraag om bevestiging voor het verwijderen:
|
||||
|
||||
`Clear-History -Confirm`
|
||||
@@ -1,6 +1,6 @@
|
||||
# Clear-History
|
||||
|
||||
> A powershell command to clear the entries in the current session.
|
||||
> Delete entries from the PowerShell session command history.
|
||||
> Note: `clhy` can be used as an alias for `Clear-History`.
|
||||
> More information: <https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/clear-history>.
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
- Clear multiple commands by name:
|
||||
|
||||
`Clear-History -CommandLine "{{command_1}}", "{{command_2}}"`
|
||||
`Clear-History -CommandLine {{"command1", "command2", ...}}`
|
||||
|
||||
- Clear a specific history entry by ID:
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
- Clear multiple IDs:
|
||||
|
||||
`Clear-History -Id {{id_1}}, {{id_2}}, {{id_3}}`
|
||||
`Clear-History -Id {{id1, id2, ...}}`
|
||||
|
||||
- Clear commands within a range of IDs:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user