Forrest logo
tool overview
On this page you find all important commands for the CLI tool truncate. If the command you are looking for is missing please ask our AI.

truncate

The 'truncate' command line tool is used to truncate or shorten files by removing data from their end. It is mainly used to reduce the size of a file to a specified length.

One common usage of 'truncate' is to create empty files of a specified size. By providing the desired file size, the tool can create a new file with the specified size, with all the data being truncated or removed.

The command has various options, such as '-s' or '--size', which allows specifying the size of the output file. It supports different unit sizes, including bytes, kilobytes, and megabytes, making it versatile for various needs.

Additionally, 'truncate' can also be used to increase the file size by utilizing the '-r' option. It adds null bytes at the end of the file to meet the desired size.

The tool can be particularly useful when dealing with large log files, as it allows quick and efficient truncation to keep only recent data, minimizing disk space usage.

It is a command commonly found on Unix-like systems and is often used in shell scripts or executed directly from the terminal.

Care should be taken while using the 'truncate' command, as it permanently removes data from the file, making it non-recoverable. Thus, it is advisable to create backups before truncating important files.

Overall, the 'truncate' command line tool is a powerful utility for manipulating file sizes, whether for creating empty files, shrinking existing ones, or padding them with null bytes.

List of commands for truncate:

  • truncate:tldr:170b5 truncate: Set a size of 10 GB to an existing file, or create a new file with the specified size.
    $ truncate --size ${10G} ${filename}
    try on your machine
    explain this command
  • truncate:tldr:787ca truncate: Extend the file size by 50 MiB, fill with holes (which reads as zero bytes).
    $ truncate --size +${50M} ${filename}
    try on your machine
    explain this command
  • truncate:tldr:7ac89 truncate: Empty the file's content, but do not create the file if it does not exist.
    $ truncate --no-create --size 0 ${filename}
    try on your machine
    explain this command
  • truncate:tldr:a301d truncate: Shrink the file by 2 GiB, by removing data from the end of file.
    $ truncate --size -${2G} ${filename}
    try on your machine
    explain this command
  • truncate:tldr:bdb0b truncate: Empty the file's content.
    $ truncate --size 0 ${filename}
    try on your machine
    explain this command
tool overview