#!/bin/bash
# (C) Copyright 2012,2013 Continuent, Inc - Released under the New BSD License
# Version 1.0.5 - 2013-04-03
cookbook_dir=$(dirname $0)
if [ -n "$1" ]
then
    grep -w $1 $cookbook_dir/REFERENCE.txt
else
    less $cookbook_dir/REFERENCE.txt
fi
 
