#!/bin/sh #---------------------------------------------------------------------------- # eisfax-doc - show eisfax documentation # # Copyright (c) 2002-2004 Stefan Krister # Copyright (c) 2005 Frank Meyer # # Last Update: $Id$ # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. #---------------------------------------------------------------------------- pager=$PAGER docfile="/usr/share/doc/eisfax/eisfax.txt" if [ "$pager" = "" ] then pager="more -d" fi $pager $docfile echo -e 'ENTER=Continue \c'; read dummy