#!/bin/sh
# $Id: cfmhs,v 1.2 2000/04/03 10:18:02 dmetz Exp $
# $crtd:  by  Derald Metzger  on  990919 $
# $cmnt:  This is an sh wrapper for cfmh.
#           Copyright (C) 1998 - 2000 Derald Metzger
#   This may be freely redistributed under the terms of the GNU GPL.
# $

hnam=`uname -n`

usage="
  cfmhs is a wrapper for cfmh.
  It redirects output to file $CFMROOT/status/<hostname>_h.
USAGE:
  cfmhs .
ALSO
  See also cfm(8), cfmd(8), cfmds, cfmh(8), cfmhs, cfmdb(8), cfmsr(8),
  cfmv(8), cfmvs, rcsintro(1), doc/cfm*/*
"

[ "$1" != . ] && { echo "### cfmhs: insufficient args $usage"; exit }
cfmh -f $CFMROOT/status/${hnam}_h  .

