I add two function to have logs with colors

This commit is contained in:
hobbestigrou 2010-10-08 23:21:12 +02:00
commit 80e50a0a8c

View file

@ -38,3 +38,10 @@ function take() {
cd $1 cd $1
} }
function logview() {
ccze -A < $1 | less -R
}
function logtail() {
tail -f $1 | ccze
}