How do I truncate a UNIX binary log file using command line options?
You can use perl as follows to truncates the file opened on FILEHANDLE, or named by EXPR, to the specified length. You can also use truncate command as discussed below.
perl -e'truncate "filename", LENGTH' perl -e'truncate "foo", 122455'
truncate UNIX command
Various version of UNIX and Linux like operating system comes with the truncate command to shrink or extend the size of a file to the specified size:
truncate -s SIZE fileName truncate -s 2000KB fileName truncate -s 2000MB fileName truncate -s 20GB fileName
The SIZE may also be prefixed by one of the following to adjust the size of each FILE based on their current size:
+ => extend by
- => reduce by
< => at most
> => at least
/ => round down to multiple of
% => round up to multiple of
The above syntax is based on GNU truncate command. See local man page for more info:
$ man truncate
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop










![sed Delete / Remove ^M Carriage Return [ Line Feed ]](http://s0.cyberciti.org/images/rp/1/15.jpg)

{ 0 comments… add one now }