Skip to content
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

cut, du: update Dutch page #12750

Merged
merged 2 commits into from
May 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions pages.nl/common/cut.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@
- Toon een bereik van iedere regel voor een specifiek bestand:

`cut --characters {{1}} {{pad/naar/bestand}}`

- Toon specifieke velden van `NUL` afgesloten regels (bijv. zoals in `find . -print0`) in plaats van nieuwe regels:

`{{command}} | cut --zero-terminated --fields {{1}}`
4 changes: 4 additions & 0 deletions pages.nl/common/du.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@
- Toont de grootte in leesbare vorm van alle `.jpg` bestanden in sub-mappen van de huidige map en laat een cumulatief totaal zien op het eind:

`du -ch {{*/*.jpg}}`

- Toont alle bestanden en mappen (inclusief verborgen) boven een bepaalde drempelwaarde ([t]hreshold) (bruikbaar om te onderzoeken wat veel ruimte in neemt):

`du --all --human-readable --threshold {{1G|1024M|1048576K}} .[^.]* *`