diff options
Diffstat (limited to '')
-rw-r--r-- | upstream/opensuse-leap-15-6/man8/xfs_mkfile.8 | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/upstream/opensuse-leap-15-6/man8/xfs_mkfile.8 b/upstream/opensuse-leap-15-6/man8/xfs_mkfile.8 new file mode 100644 index 00000000..abaa4e60 --- /dev/null +++ b/upstream/opensuse-leap-15-6/man8/xfs_mkfile.8 @@ -0,0 +1,43 @@ +.TH xfs_mkfile 8 +.SH NAME +xfs_mkfile \- create an XFS file +.SH SYNOPSIS +.B xfs_mkfile +[ +.B \-v +] [ +.B \-n +] [ +.B \-p +] +.I size\c +.RB [ k | b | m | g ] +.IR filename " ..." +.br +.B xfs_mkfile \-V +.SH DESCRIPTION +.B xfs_mkfile +creates one or more files. The file is padded with zeroes by default. +The default size is in bytes, but it can be +flagged as kilobytes, blocks, megabytes, or gigabytes with the +.BR k , +.BR b , +.BR m , +or +.B g +suffixes, respectively. +.SH OPTIONS +.TP +.B \-v +Verbose. Report the names and sizes of created files. +.TP +.B \-n +No bytes. Create a holey file - that is, do not write out any data, just +seek to end of file and write a block. +.TP +.B \-p +Preallocate. The file is preallocated, then overwritten with zeroes, +then truncated to the desired size. +.TP +.B \-V +Prints the version number and exits. |