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

16 lines
340 B
Markdown
Raw Normal View History

2018-10-20 13:08:04 +02:00
# mkfile
> Create one or more empty files of any size.
- Create an empty file of 15 kilobytes:
`mkfile -n {{15k}} {{filename}}`
2018-10-20 13:08:04 +02:00
- Create a file of a given size and unit (bytes, KB, MB, GB):
`mkfile -n {{size}}{{b|k|m|g}} {{filename}}`
2018-10-20 13:08:04 +02:00
- Create two files of 4 megabytes each:
`mkfile -n {{4m}} {{first_filename}} {{second_filename}}`