blob: 83bdf9c2bf61a7a2125f6cf537a4210ef8e779f8 [file] [log] [blame]
tom1c15dd92014-08-26 18:55:38 -07001#!/bin/bash
Pavlin Radoslavov91413792014-10-15 11:00:32 -07002# ----------------------------------------------------------------------------
tom1c15dd92014-08-26 18:55:38 -07003# Continuously watches the Apache Karaf log; survives 'karaf clean'
Pavlin Radoslavov91413792014-10-15 11:00:32 -07004# ----------------------------------------------------------------------------
tom1c15dd92014-08-26 18:55:38 -07005KARAF_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