at: add Dutch translation (#13370)

at:  Dutch translation
This commit is contained in:
Sebastiaan Speck 2024-08-13 00:33:26 +02:00 committed by GitHub
parent a324a09820
commit e67214e5b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 37 additions and 0 deletions

17
pages.nl/common/at.md Normal file
View File

@ -0,0 +1,17 @@
# at
> Voer commando's eenmaal later uit.
> De service atd (of atrun) moet actief zijn voor de daadwerkelijke uitvoering.
> Meer informatie: <https://manned.org/at>.
- Voer commando's uit van `stdin` over 5 minuten (druk op `Ctrl + D` als je klaar bent):
`at now + 5 minutes`
- Voer een commando uit van `stdin` om 10:00 AM vandaag:
`echo "{{./make_db_backup.sh}}" | at 1000`
- Voer commando's uit van een gegeven bestand volgende dinsdag:
`at -f {{pad/naar/bestand}} 9:30 PM Tue`

20
pages.nl/linux/at.md Normal file
View File

@ -0,0 +1,20 @@
# at
> Voert commando's uit op een gespecificeerd tijdstip.
> Meer informatie: <https://man.archlinux.org/man/at.1>.
- Open een `at`-prompt om een nieuwe reeks geplande commando's te maken, druk op `Ctrl + D` om op te slaan en af te sluiten:
`at {{hh:mm}}`
- Voer de commando's uit en e-mail het resultaat met behulp van een lokaal mailprogramma zoals Sendmail:
`at {{hh:mm}} -m`
- Voer een script uit op het opgegeven tijdstip:
`at {{hh:mm}} -f {{pad/naar/bestand}}`
- Toon een systeembericht om 23:00 op 18 februari:
`echo "notify-send '{{Wake up!}}'" | at {{11pm}} {{Feb 18}}`