From c7efc9df28b86cd93dbe56ba0c645a4b381baf9f Mon Sep 17 00:00:00 2001 From: Stephan Witt Date: Fri, 15 Sep 2017 08:16:50 +0200 Subject: [PATCH] #10762 open lyx pipe only once to read the answer --- development/MacOSX/lyxeditor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/development/MacOSX/lyxeditor b/development/MacOSX/lyxeditor index 476ffc0755..7431b3b991 100755 --- a/development/MacOSX/lyxeditor +++ b/development/MacOSX/lyxeditor @@ -87,9 +87,9 @@ if [ -n "$LYXPIPE" -a -p "$LYXPIPE".in ]; then MAC_LYXPIPE_CONTENTS="LYXCMD:macdvix:server-goto-file-row:$file $2" # echo "$MAC_LYXPIPE_CONTENTS" echo "$MAC_LYXPIPE_CONTENTS" > "${LYXPIPE}".in || { echo "Cannot write to lyxpipe." ; exit 2 ; } - while read line < "${LYXPIPE}".out ; do + while read line ; do echo LyX said: $line - done || { echo "Cannot read from lyxpipe." ; exit 2 ; } + done < "${LYXPIPE}".out || { echo "Cannot read from lyxpipe." ; exit 2 ; } else echo "Our best guess sets lyxpipe as ${LYXPIPE}" echo "But the lyxpipe could not be found." -- 2.39.5