1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/osx/mkfile.md
2021-11-03 14:09:46 -03:00

16 lines
396 B
Markdown

# mkfile
> Create one or more empty files of any size.
> More information: <https://ss64.com/osx/mkfile.html>.
- Create an empty file of 15 kilobytes:
`mkfile -n {{15k}} {{filename}}`
- Create a file of a given size and unit (bytes, KB, MB, GB):
`mkfile -n {{size}}{{b|k|m|g}} {{filename}}`
- Create two files of 4 megabytes each:
`mkfile -n {{4m}} {{first_filename}} {{second_filename}}`