1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 17:22:10 +02:00
tldr/pages/common/truncate.md
K.B.Dharun Krishna 898f711019
pages/*: update GNU coreutils links, sync translation pages (#15543)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-01-18 18:45:33 +05:30

731 B

truncate

Shrink or extend the size of a file to the specified size. More information: https://www.gnu.org/software/coreutils/manual/html_node/truncate-invocation.html.

  • Set a size of 10 GB to an existing file, or create a new file with the specified size:

truncate --size 10G {{path/to/file}}

  • Extend the file size by 50 MiB, fill with holes (which reads as zero bytes):

truncate --size +50M {{path/to/file}}

  • Shrink the file by 2 GiB, by removing data from the end of file:

truncate --size -2G {{path/to/file}}

  • Empty the file's content:

truncate --size 0 {{path/to/file}}

  • Empty the file's content, but do not create the file if it does not exist:

truncate --no-create --size 0 {{path/to/file}}