date: add Dutch translation and fix typo's (#12910)

This commit is contained in:
Sebastiaan Speck
2024-06-09 12:18:06 +02:00
committed by GitHub
parent e6f7ca97a8
commit d85609471d
9 changed files with 78 additions and 6 deletions

20
pages.nl/osx/date.md Normal file
View File

@@ -0,0 +1,20 @@
# date
> Stel de systeemdatum in of toon deze.
> Meer informatie: <https://keith.github.io/xcode-man-pages/date.1.html>.
- Toon de huidige datum in het standaardformaat van de locale:
`date +%c`
- Toon de huidige datum in UTC en ISO 8601-formaat:
`date -u +%Y-%m-%dT%H:%M:%SZ`
- Toon de huidige datum als een Unix timestamp (seconden sinds de Unix-epoch):
`date +%s`
- Toon een specifieke datum (gerepresenteerd als een Unix timestamp) met het standaard formaat:
`date -r {{1473305798}}`