#!/bin/sh # Filename: grml-tips # Purpose: query a signature file for a specific keyword and display results # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. # Latest change: Sat Mar 25 17:59:52 CET 2006 [mika] ################################################################################ TIPSFILE='/usr/share/grml-tips/grml_tips' if [ -r "$TIPSFILE" ] ; then if [ -n "$1" ] ; then agrep -d "^-- $" -i "$1" $TIPSFILE && echo "" || \ ( echo "Sorry, could not find a tip for '$1'" echo 'If you want to submit a tip please send it to tips@grml.org - thank you!' ) else echo "Usage: $0 " ; exit 1 fi else echo "Error: $TIPSFILE not found. Exiting." exit 1 fi ## END OF FILE #################################################################