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

shred: add Dutch translation #13181

Merged
merged 1 commit into from
Jun 28, 2024
Merged
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
28 changes: 28 additions & 0 deletions pages.nl/common/shred.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# shred

> Overschrijf bestanden om gegevens veilig te verwijderen.
> Meer informatie: <https://www.gnu.org/software/coreutils/shred>.

- Overschrijf een bestand:

`shred {{pad/naar/bestand}}`

- Overschrijf een bestand en toon de voortgang op het scherm:

`shred --verbose {{pad/naar/bestand}}`

- Overschrijf een bestand, waarbij [z]ero's in plaats van willekeurige gegevens worden achtergelaten:

`shred --zero {{pad/naar/bestand}}`

- Overschrijf een bestand een specifiek aa[n]tal keren:

`shred --iterations {{25}} {{pad/naar/bestand}}`

- Overschrijf een bestand en verwijder het:

`shred --remove {{pad/naar/bestand}}`

- Overschrijf een bestand 100 keer, voeg een laatste overschrijving met [z]ero's toe, verwijder het bestand na overschrijven en toon [v]erbose voortgang op het scherm:

`shred -vzun 100 {{pad/naar/bestand}}`