2018-07-15 10:24:57 +01:00
|
|
|
# truncate
|
|
|
|
|
|
|
|
> Shrink or extend the size of a file to the specified size.
|
2021-04-01 16:54:26 +01:00
|
|
|
> More information: <https://www.gnu.org/software/coreutils/truncate>.
|
2018-07-15 10:24:57 +01:00
|
|
|
|
|
|
|
- Set a size of 10 GB to an exsting file, or create a new file with the specified size:
|
|
|
|
|
|
|
|
`truncate -s {{10G}} {{filename}}`
|
|
|
|
|
|
|
|
- Extend the file size by 50M, fill with holes (which reads as zero bytes):
|
|
|
|
|
|
|
|
`truncate -s +{{50M}} {{filename}}`
|
|
|
|
|
|
|
|
- Shrink the file by 2GiB, by removing data from the end of file:
|
|
|
|
|
2019-12-30 12:41:06 +00:00
|
|
|
`truncate -s -{{2G}} {{filename}}`
|
|
|
|
|
|
|
|
- Empty the file's content:
|
|
|
|
|
|
|
|
`truncate -s 0 {{filename}}`
|