Go to main content

man pages section 8: System Administration Commands

Exit Print View

Updated: Wednesday, July 27, 2022
 
 

mkfile(8)

Name

mkfile - create a file

Synopsis

mkfile [-nv] size [t | g | k | b | m] filename...
mkfile [-v] [-p pattern [-g length]] size [t | g | k | b | m] filename...
mkfile [-v] [-P filename [-g length]] size [t | g | k | b | m] filename...

Description

By default, mkfile creates one or more files of the specified size that are padded with zeros. The default size is in bytes, but it can be flagged as terabytes, gigabytes, kilobytes, blocks, or megabytes, with the t, g, k, b, or m suffixes, respectively. Suffixes can be uppercase or lowercase.

If an administrator wishes to use a file created with mkfile as a swap file, they must first set the sticky bit using chmod(1).

Options

–g length

Specify a gap (a space filled with zeros) between two copies of a pattern specified with argument –p. Length can be given in decimal, octal or hexadecimal.

–n

Create an empty filename. The size is noted, but disk blocks are not allocated until data is written to them.

–p pattern

File should be filled with given textual pattern instead of zeros.

–P filename

A pattern to fill a file should be read from filename.

–v

Verbose. Report the names and sizes of created files.

Exit Status

The following exit values are returned:

0

Success.

>0

An error occurred.

Attributes

See attributes(7) for descriptions of the following attributes:

ATTRIBUTE TYPE
ATTRIBUTE VALUE
Availability
system/core-os
Interface Stability
Committed

See Also

chmod(1), attributes(7), swap(8)