#!/bin/bash

# Script to invoke the mv command and move the first file passed in to the second.
# This script is intended for use by the bkprofdata command. It returns 0 if the file is 
# successfully moved and non zero if the move failed. 

mv $1 $2
