Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
See the other answers, but your sample tail line 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 if tail encounters an error. Don't reinvent logrotate that tanascius recommends. – msw May 21 '10 at 9:26

3 Answers

up vote 4 down vote accepted

Think about using logrotate.
It will not do want you want (delete all lines but the last 500), but it can take care of too big logfiles (normally by comressing the old ones and deleting them at some point). Should be widely available.

share|improve this answer
DIR=/path/to/my/dir # log directory
TMP=/tmp/tmp.log # temporary file
for f in `find ${DIR} -type f -depth 1 -name \*.log` ; do
  tail -n 500 $f > /tmp/tmp.log
  mv /tmp/tmp.log $f
done
share|improve this answer
for foo in $(find) is a bad habit to develop. Either use find | while read or globbing. And the mv should be conditional on the success of the tail. – Dennis Williamson May 21 '10 at 12:24
@Dennis: thanks - can you explain why for foo in $(find ...) is a bad habit ? – Paul R May 21 '10 at 16:47
If there are filenames with spaces, it will see those as multiple separate names. – Dennis Williamson May 21 '10 at 17:27
@Dennis: thanks - I hadn't realised that – Paul R May 21 '10 at 21:30

In bash you loop over files in a directory, e.g. like this:

cd target/directory

for filename in *log; do
    echo "Cutting file $filename"
    tail -n 500 $filename > $filename.cut
    mv $filename.cut $filename
done
share|improve this answer
The mv should be conditional on the success of the tail. – Dennis Williamson May 21 '10 at 12:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.