2015-10-08 11:15:08 -04:00
|
|
|
.Dd 2015-10-08
|
2015-10-07 05:16:18 -04:00
|
|
|
.Dt FLOCK 1
|
|
|
|
.Os sbase
|
|
|
|
.Sh NAME
|
|
|
|
.Nm flock
|
|
|
|
.Nd tool to manage locks on files
|
|
|
|
.Sh SYNOPSIS
|
|
|
|
.Nm
|
2015-10-08 11:43:09 -04:00
|
|
|
.Op Fl nosux
|
2015-10-07 05:16:18 -04:00
|
|
|
.Ar file
|
|
|
|
.Ar cmd Op arg ...
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
.Nm
|
2020-03-01 17:37:31 -05:00
|
|
|
is used to manage advisory locks on open files.
|
|
|
|
It is commonly used to prevent long running cron jobs from running in
|
|
|
|
parallel.
|
|
|
|
If
|
2015-10-07 05:16:18 -04:00
|
|
|
.Ar file
|
|
|
|
does not exist, it will be created.
|
|
|
|
.Sh OPTIONS
|
|
|
|
.Bl -tag -width Ds
|
|
|
|
.It Fl n
|
2020-03-01 17:37:31 -05:00
|
|
|
Set non-blocking mode on the lock.
|
|
|
|
Fail immediately if the lock cannot be acquired.
|
2015-10-08 11:43:09 -04:00
|
|
|
.It Fl o
|
|
|
|
Close the file descriptor before exec to avoid having the exec'ed
|
|
|
|
program holding on to the lock.
|
2015-10-07 05:16:18 -04:00
|
|
|
.It Fl s
|
|
|
|
Acquire a shared lock.
|
|
|
|
.It Fl u
|
|
|
|
Release the lock.
|
|
|
|
.It Fl x
|
2020-03-01 17:37:31 -05:00
|
|
|
Acquire an exclusive lock.
|
|
|
|
This is the default.
|
2015-10-07 05:16:18 -04:00
|
|
|
.El
|