#!/bin/sh

print_usage() {
    echo "Usage: lnsr DirectoryToSymlink WhereToSymlinkTo"
}

if ! [ $# = 2  ]; then
    print_usage
    exit
fi
echo "***Linking $1 to $2/ recursively..."
CURRDIR=`pwd`
cd $2/
lndir $1
cd $CURRDIR
echo "Done."
