^: add Dutch translation (#12933)

pull/28/head
Sebastiaan Speck 2024-06-11 23:25:30 +02:00 committed by GitHub
parent 16033b189d
commit ec9783fd12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 17 additions and 0 deletions

17
pages.nl/common/^.md Normal file
View File

@ -0,0 +1,17 @@
# Caret
> Bash ingebouwd commando om snel een string in het vorige commando te vervangen en het resultaat uit te voeren.
> Equivalent aan `!!:s^string1^string2`.
> Meer informatie: <https://www.gnu.org/software/bash/manual/bash.html#Event-Designators>.
- Voer het vorige commando uit waarbij `string1` wordt vervangen door `string2`:
`^{{string1}}^{{string2}}`
- Verwijder `string1` uit het vorige commando:
`^{{string1}}^`
- Vervang `string1` door `string2` in het vorige commando en voeg `string3` toe aan het einde ervan:
`^{{string1}}^{{string2}}^{{string3}}`