blob: f138b7364cbba359b7e0664e0a17ccbac21af752 [file] [log] [blame]
tom1c15dd92014-08-26 18:55:38 -07001#!/bin/bash
2#------------------------------------------------------------------------------
3# Continuously watches the Apache Karaf log; survives 'karaf clean'
4#------------------------------------------------------------------------------
5KARAF_LOG=${KARAF_LOG:-~/apache-karaf-3.0.1/data/log/karaf.log}
6
7while true; do
8 [ ! -f $KARAF_LOG ] && sleep 2 && continue
9 tail -n 512 -f -F $KARAF_LOG
10done
11