On Thu, 9 Sep 1999, Jonathan Allen wrote:

>>> Sep 8 17:11:12 mirror diald[4308]: connector: /usr/lib/diald/connect:
>>> [: to: binary operator expected

> Here it is ...

> [ $FIFO ] && echo "message $*" >$FIFO

This should read

[ -n "$FIFO" ] && ...

> if [ $PROMPT ]; then

if [ -n "$PROMPT" ]; then

> if [ $START_ACK ]; then

if [ -n "$START_ACK" ]; then

Ed



-
To unsubscribe from this list: send the line "unsubscribe linux-diald" in
the body of a message to [EMAIL PROTECTED]

Reply via email to