#!/bin/sh
#
# Example shell script to mail & post ZipNews format reply files
# produced by Palmtop News Reader (PNR)
#
# Before using this shell script do the following:
#
#   1. Create the directory $HOME/Out on your host (UNIX) system by typing
#      mkdir $HOME/Out
#   2. Copy this shell script to your bin directory (or whatever directory
#      you store your UNIX programs in). Basically, it needs to be in a
#      directory specified in your path variable (echo $path)
#
# Follow these steps whenever you need to send your replies:
#
#   1. Upload all files from your replies directory on your palmtop
#      (e.g. C:\NEWS\REPLIES\*.*) to the Out directory
#   2. Type 'sendme' to run this shell script, and thats it!
#
OUTDIR=$HOME/Out
echo Starting uqwk...
uqwk -m -n +z -dhk.net -R$OUTDIR
/bin/rm -f $OUTDIR/*
echo Done!

