Truncate files to zero length

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

truncate -s0 foo bar

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
Arne Hartherz