Posts Tagged With: log

Archive all files with a given extension

Tagged with: , , , , ,

Find all files with ‘.log’ extention and make an bzip archive


find /var/log -name '*.log' | tar cv --files-from=- | bzip2 > log.tar.bz2
No Comments »

Tail Command in Follow Mode

Tagged with: , , , ,

View in real time what is added to a file. -f stands for Follow


tail -f /var/log/messages
No Comments »

last Command

Tagged with: , , , , , , ,

The last command shows a history of logins…


last
No Comments »

Watch a Log File for Changes using tail

Tagged with: , , , , , ,

<p class=”intro”>This command will let you watch a log file for changes as soon as they happen.</p>

<pre><code class=”cli”>
tail -f log/development.log
</code></pre>

[tags]log,listen,watch,tail,command,linux,cli[/tags]

No Comments »