mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 15:35:24 +02:00
^: add Dutch translation (#12933)
This commit is contained in:
parent
16033b189d
commit
ec9783fd12
1 changed files with 17 additions and 0 deletions
17
pages.nl/common/^.md
Normal file
17
pages.nl/common/^.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue