blob: a17d3b9cb9a18f7976b7283f920ba035eea12998 [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# ----------------------------------------------------------------------------
Thomas Vachuska5630c612015-03-24 12:24:12 -07005KARAF_LOG=${KARAF_LOG:-~/apache-karaf-$KARAF_VERSION/data/log/karaf.log}
tom1c15dd92014-08-26 18:55:38 -07006
7while true; do
8 [ ! -f $KARAF_LOG ] && sleep 2 && continue
9 tail -n 512 -f -F $KARAF_LOG
10done