Options (2)
-s, --sizebooleanSet a size of 10 GB to an existing file, or create a new file with the specified size
Example:
truncate {{[-s|--size]}} 10G {{path/to/file}}-c, --no-createbooleanEmpty the file's content, but do not create the file if it does not exist
Example:
truncate {{[-s|--size]}} 0 {{[-c|--no-create]}} {{path/to/file}}Examples (5)
Set a size of 10 GB to an existing file, or create a new file with the specified size
truncate [-s|--size] 10G path/to/fileExtend the file size by 50 MiB, fill with holes (which reads as zero bytes)
truncate [-s|--size] +50M path/to/fileShrink the file by 2 GiB, by removing data from the end of file
truncate [-s|--size] -2G path/to/fileEmpty the file's content
truncate [-s|--size] 0 path/to/fileEmpty the file's content, but do not create the file if it does not exist
truncate [-s|--size] 0 [-c|--no-create] path/to/filemade by @shridhargupta | data from tldr-pages