pages.nl: add Dutch translation (#12130)
This commit is contained in:
17
pages.nl/common/flock.md
Normal file
17
pages.nl/common/flock.md
Normal file
@@ -0,0 +1,17 @@
|
||||
# flock
|
||||
|
||||
> Beheer sloten van shell scripts.
|
||||
> Het kan worden gebruikt om ervoor te zorgen dat slechts één proces van een commando wordt uitgevoerd.
|
||||
> Meer informatie: <https://manned.org/flock>.
|
||||
|
||||
- Voer een commando uit met een bestandslot zodra het slot niet vereist is door anderen:
|
||||
|
||||
`flock {{pad/naar/lock.lock}} --command "{{commando}}"`
|
||||
|
||||
- Voer een commando uit met een bestandslot en stop als het slot niet bestaat:
|
||||
|
||||
`flock {{pad/naar/lock.lock}} --nonblock --command "{{commando}}"`
|
||||
|
||||
- Voer een commando uit met een bestandslot en stop met een specifieke error code als het slot niet bestaat:
|
||||
|
||||
`flock {{pad/naar/lock.lock}} --nonblock --conflict-exit-code {{error_code}} -c "{{commando}}"`
|
Reference in New Issue
Block a user