Read more

Truncate files to zero length

Arne Hartherz
September 20, 2011Software engineer at makandra GmbH

This will reduce the filesize of foo and bar to 0 bytes:

truncate -s0 foo bar
Illustration online protection

Rails Long Term Support

Rails LTS provides security patches for old versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2)

  • Prevents you from data breaches and liability risks
  • Upgrade at your own pace
  • Works with modern Rubies
Read more Show archive.org snapshot

If the files do not exist they will be created.

You can use this to easily truncate your application's log files:

truncate -s0 log/*.log
Posted by Arne Hartherz to makandra dev (2011-09-20 16:38)