#!/bin/sh
. opts
if [ $# != 2 ]; then
	. usage "from to"
fi
from=$1 to=$2
mkdir -p "$(dirname "$to")"
mv "${OPTS[@]}" "$from" "$to"
