I am looking to create a cron job that opens a directory loops through all the logs i have created and deletes all lines but keep the last 500 for example.
I was thinking of something along the lines of
tail -n 500 filename > filename
Would this work?
I also not sure how to loop through a directory in bash
Thanks in advance.
tailline executes like this: 1) the shell opens filename for output and truncates it to zero length 2) tail runs, sees an empty file and 3) writes nothing into the now empty filename. The MYYN's answer shows how you avoid that, but even that bombs iftailencounters an error. Don't reinvent logrotate that tanascius recommends. – msw May 21 '10 at 9:26