1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

npm-list, sha256sum: update Dutch translation, sha256sum: fix typo (#14916)

* Update 
Co-authored-by: Leon <leonvsc@users.noreply.github.com>
This commit is contained in:
Sebastiaan Speck 2024-11-20 13:31:57 +01:00 committed by GitHub
parent 3728433211
commit 7fbc4a4384
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 4 deletions

View file

@ -1,4 +1,4 @@
# npm-list
# npm list
> Dit commando is een alias van `npm ls`.

View file

@ -26,3 +26,7 @@
- Toon alleen een bericht wanneer verificatie mislukt, negeer ontbrekende bestanden:
`sha256sum --ignore-missing --check --quiet {{pad/naar/bestand.sha256}}`
- Controleer een bekende SHA256 checksum van een bestand:
`echo {{bekende_sha256_checksum_van_een_bestand}} {{pad/naar/bestand}} | sha256sum --check`

View file

@ -15,7 +15,7 @@
`{{command}} | sha256sum`
- Read a file of SHA256 sums and filenames and verify all files have matching checksums:
- Read a file of SHA256 checksums and filenames and verify all files have matching checksums:
`sha256sum --check {{path/to/file.sha256}}`
@ -27,6 +27,6 @@
`sha256sum --ignore-missing --check --quiet {{path/to/file.sha256}}`
- Check known SHA256 sum of a file:
- Check known SHA256 checksum of a file:
`echo {{known-sha256-sum-of-the-file}} {{path/to/file}} | sha256sum --check`
`echo {{known_sha256_checksum_of_the_file}} {{path/to/file}} | sha256sum --check`