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

hnam=`uname -n`

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

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