Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 609 Bytes

truncate.md

File metadata and controls

25 lines (15 loc) · 609 Bytes

truncate

GNU Coreutils.

CLI for the truncate POSIX 2007 function, implemented through the truncate system call.

Sets file to given size.

If greater, pads with 0s. Sparse files are generated by default.

If smaller, data loss.

Operates inline without mercy, only works on files.

printf 'ab' > /tmp/a
truncate -s 1 /tmp/a
[ "$(cat f)" = 'a' ] || exit 1

Negative values truncate up to from the end:

echo abc > f
truncate -s -1 f
[ `cat f` = ab ] || exit 1

Must have a space: -s -1, not -s-1.