sbase/mktemp.1

29 lines
619 B
Groff
Raw Normal View History

2015-01-31 23:23:38 +00:00
.Dd January 31, 2015
.Dt MKTEMP 1
.Os sbase
2015-01-30 22:29:09 +00:00
.Sh NAME
.Nm mktemp
2015-01-31 23:14:19 +00:00
.Nd create temporary file or directory
2015-01-30 22:29:09 +00:00
.Sh SYNOPSIS
.Nm
.Op Fl dq
.Op Ar template
.Sh DESCRIPTION
.Nm
2015-01-31 23:14:19 +00:00
creates a temporary file by generating a unique filename with
.Ar template ,
which has to have at least six 'X's appended to it. If no
.Ar template
is specified, a default of 'tmp.XXXXXXXXXX' is used and the
tmpdir set to '/tmp' or, if set, the TMPDIR environment variable.
2015-01-30 22:29:09 +00:00
.Sh OPTIONS
.Bl -tag -width Ds
.It Fl d
2015-01-31 23:15:19 +00:00
Create a temporary directory instead of a file.
2015-01-30 22:29:09 +00:00
.It Fl q
2015-01-31 23:14:19 +00:00
Fail silently if an error occurs.
2015-01-30 22:29:09 +00:00
.El
.Sh SEE ALSO
.Xr mkdtemp 3 ,
.Xr mkstemp 3