#!/bin/bash
# Usage: rcpf <file-name> <absolute-directory-name>

# Copy the named file (located in the current directory) to the named
#   directory on each system in the cluster.

rcp $1 master:$2
rcp $1 zinc2:$2
rcp $1 zinc3:$2
rcp $1 zinc4:$2
