Skip to content

mkdir, touch: update Dutch translation #17189

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pages.nl/common/mkdir.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@
- Maak mappen aan met specifieke permissies:

`mkdir {{[-m|--mode]}} {{rwxrw-r--}} {{pad/naar/map1 pad/naar/map2 ...}}`

- Maak meerdere geneste mappen recursief:

`mkdir {{[-p|--parents]}} {{path/to/{a,b}/{x,y,z}/{h,i,j}}}`
8 changes: 8 additions & 0 deletions pages.nl/common/touch.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,11 @@
- Stel de timestamp in door een string te parsen:

`touch {{[-d|--date]}} "{{last year|5 hours|next thursday|nov 14|...}}" {{pad/naar/bestand}}`

- Maak meerdere bestanden met oplopende nummers:

`touch {{pad/naar/bestand{1..10}}}`

- Maak meerdere bestanden met een letterbereik:

`touch {{pad/naar/bestand{a..z}}}`