1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 14:35:42 +02:00

mkfile: add page (#2458)

This commit is contained in:
Guido Lena Cota 2018-10-20 13:08:04 +02:00 committed by Starbeamrainbowlabs
parent 22bdcd575b
commit 2bcf312629

15
pages/osx/mkfile.md Normal file
View file

@ -0,0 +1,15 @@
# mkfile
> Create one or more empty files of any size.
- Create an empty file of 15 kilobytes:
`mkfile -n {{15k}} {{file_name}}`
- Create a file of a given size and unit (bytes, KB, MB, GB):
`mkfile -n {{size}}{{b|k|m|g}} {{file_name}}`
- Create two files of 4 megabytes each:
`mkfile -n {{4m}} {{first_file_name}} {{second_file_name}}`