df2daf524d
Signed-off-by: Nico Schottelius <nico@manager.schottelius.org>
8 lines
200 B
Bash
Executable file
8 lines
200 B
Bash
Executable file
#!/bin/sh
|
|
export TMPFILE="/tmp/`basename $0`-$$"
|
|
cat > $TMPFILE
|
|
|
|
/home/user/nico/bin/mail.add.wddb "$TMPFILE"
|
|
#/home/user/nico/bin/mail.add.wddb "$TMPFILE" &> /home/user/nico/LOG.wddb
|
|
|
|
rm -f $TMPFILE
|