[Remind-Fans] wxRemind - new release
Daniel Graham
daniel.graham at duke.edu
Thu May 18 15:44:51 EDT 2006
Gaby,
Interesting. There's not much to the script --- here's the complete 'rem':
--------------------------------------------------------------------------
#!/bin/sh
#
# rem - by David Skoll - 26 February 1991
#
# $Id: rem,v 1.1 1998/01/15 02:50:21 dfs Exp $
#
# This script runs 'remind' with a default reminder file assumed. You
# can override the default by using "rem -F newfile ..." (But why would
# you use rem unless you wanted to accept the default??)
# ------ You may wish to change the defaults below this line ------
# The default reminder file
DEFAULT=$HOME/.reminders
# The executable file (you may wish to change this to /usr/local/bin/remind
# or whatever.
EXECUTABLE=remind
# No options yet
OPTIONS=""
# No parameters yet
PARAMETERS=""
# ------ You shouldn't change anything below this line -----
# Scan for options
while test "$1" != ""
do
case $1 in
-F) DEFAULT=$2
shift
shift ;;
-*) OPTIONS="$OPTIONS $1"
shift ;;
*) PARAMETERS=$*
break ;;
esac
done
$EXECUTABLE $OPTIONS $DEFAULT $PARAMETERS
---------------------------------------------------------------------------
I'll look at modifying wxRemind to call remind directly instead of
rem. Do you have rem2ps?
-Dan
On 2006-05-18 21:24 +0200, Gaby Lence wrote:
> Thanks for your reply.
> The README.Debian says:
> remind for Debian
> -----------------
>
> rem
> ---
> The upstream remind contains a script "rem" that uses a default reminder
> file (~/.reminders) and calls remind with that. Since this script has had
> several problems in the past, it has been dropped from the Debian package.
>
> The functionality of "rem" is instead provided by "remind" itself, the
> filename argument is optional if no date or time are specified. This change
> is approved by the upstream author and is going to be part of future remind
> upstream versions.
>
> --------------------------
> I am going to investigate this 'rem' script
> because wxremind refuse to open even
> doing a symlink from remind to /bin/rem
>
> Thanks again,
> Gabriel Lence
More information about the Remind-fans
mailing list