ProgrammingThis forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I want to check a log into terminal, the logger writes a temperature_log in /var/log . How can I <<cat>> only the last line of the log, so I can append it to the output?
Here is the bad code:
Code:
#! /bin/bash
cd /var/log
x=0
until [ x = 1 ]; do
echo "`cat temperature_log`" #Thats the bad section
sleep 5
done
echo "Error!"
I wanted to do sommething like this:
Code:
echo "`cat_last_line temperature_log`"
But unfortunately , "cat_last_line" is yet to be invented,
any suggestions?
Edit: the logger updates the log every 5 seconds , thats the "sleep 5" for.
Last edited by andrew22; 02-06-2009 at 08:25 AM.
Reason: Some additions.
5 minutes and 2 answers , thanks a lot.
Thats the new script:
Code:
#! /bin/bash
cd /var/log
x=0
tail -100 temperature_log #Makes it more flexible and fast than "cat"
until [ x = 1 ]; do
tail -1 temperature_log #Thats the whole deal!!!
sleep 5
done
echo "Error"
Last edited by andrew22; 02-06-2009 at 08:49 AM.
Reason: Added the new script
~$ man tail
...
-f, --follow[={name|descriptor}]
output appended data as the file grows;
Not if andrew wants to check the log file every 5 seconds... The -f will not release the script until the user hits ctrl-c. "tail -1" simply outputs the last line of the file and quits so the rest of the script can do it's thing, including "sleep".
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.