#!/bin/sh
#
# sign - powerful signature handling
#
# sign.sh - loader of powerful signature generator
# (accepts command for e-mail client as parameter on command line)
# ____________________________________________________________
#
# Developed by Ondrej Jombik <nepto@pobox.sk>
# Copyright (c) 2001-2002 Platon SDG, http://www.platon.sk/
# All rights reserved.
#
# See README file for more information about this software.
# See COPYING file for license information.
#
# Download the latest version from
# http://www.platon.sk/projects/sign/
#
# $Platon: sign.sh,v 1.9 2002/06/21 14:15:15 jombik9 Exp $
#
# Updates:
# 14/4/2001 - initial release
# 21/6/2002 - header & copyright update
#
#############################################################################
#
# Directory of sign scripts (this one and cooperates scripts)
#
SIGN_DIR="$HOME/prog/scripts/shell/sign"
#############################################################################
# Check if e-mail client command was given.
if [ $# -lt 1 ]; then
echo -n "sign.sh: need command to run e-mail client, "
echo "fe. sign.sh /usr/local/bin/pine" ;
exit 1;
fi
# Install signature repeat creator. You can run this process
# with 'nice -n 20', but I think it is not neccessary.
$SIGN_DIR/sign-gen.sh &
# Running the e-mail client
$@
Platon Group <platon@platon.sk> http://platon.sk/
|