#!/bin/sh
#----------------------------------------------------------------------------
#  Name:     actionScript
#  Project:  XDiary
#
#  Description:
#    Example of an action shell script to be called when an alarm sounds.
#
#  Filename:         actionScript
#
#  Authors:          Roger Larsson, Ulrika Bornetun
#  Creation date:    1992-04-22
#
#
#  (C) Copyright Ulrika Bornetun, Roger Larsson (1995)
#      All rights reserved
#
#  Permission to use, copy, modify, and distribute this software and its
#  documentation for any purpose and without fee is hereby granted,
#  provided that the above copyright notice appear in all copies. Ulrika
#  Bornetun and Roger Larsson make no representations about the usability
#  of this software for any purpose. It is provided "as is" without express
#  or implied warranty.
#----------------------------------------------------------------------------
#
# SCCSID = @(#) Module: actionScript, Version: 1.1, Date: 95/02/18 14:15:08

# Simple example, just print the parameters we got.

echo ""
echo "Action shell script called."
echo ""
echo "Parameters:"

while [ $# -gt 0 ]; do
  echo "  Parameter: $1"
  shift
done

echo ""

exit 0
