#!/bin/sh
help()
{
echo -e "Gebruik: hpwhelp <parameter>\n"
echo "Parameters:"
echo "files - Belangrijke bestandslocaties"
echo "tools - Handige tools en tips"
echo "cron - Geplande taken"
exit;
}
case $1 in
files) open="help_files.txt"
;;
tools) open="help_tools.txt"
;;
cron) open="help_cron.txt"
;;
*) help
;;
esac
cat ~/utils/$open