diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:43:11 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:43:11 +0000 |
commit | fc22b3d6507c6745911b9dfcc68f1e665ae13dbc (patch) | |
tree | ce1e3bce06471410239a6f41282e328770aa404a /upstream/archlinux/man8/xfs_mkfile.8 | |
parent | Initial commit. (diff) | |
download | manpages-l10n-fc22b3d6507c6745911b9dfcc68f1e665ae13dbc.tar.xz manpages-l10n-fc22b3d6507c6745911b9dfcc68f1e665ae13dbc.zip |
Adding upstream version 4.22.0.upstream/4.22.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'upstream/archlinux/man8/xfs_mkfile.8')
-rw-r--r-- | upstream/archlinux/man8/xfs_mkfile.8 | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/upstream/archlinux/man8/xfs_mkfile.8 b/upstream/archlinux/man8/xfs_mkfile.8 new file mode 100644 index 00000000..abaa4e60 --- /dev/null +++ b/upstream/archlinux/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. |