use >&2 instead of >/dev/stderr

This commit is contained in:
John Gebbie 2022-11-01 10:26:02 +00:00
parent 6a609c75d0
commit 9874f01cfb
2 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@ if [ $# != 0 ]; then
echo 'dotoolc writes its stdin to the pipe being read by dotoold.
dotoolc will exit immediately if the pipe is not being read.
The path of the pipe is $DOTOOL_PIPE else /tmp/dotool_pipe.
' > /dev/stderr
' >&2
[ "$1" = -h ] || [ "$1" = --help ]; exit
fi
@ -18,7 +18,7 @@ if [ -p "$p" ] && ! [ -w "$p" ]; then
exit 1
fi
if ! fifo_being_read "$p"; then
echo 'dotoolc: dotoold is not connected' > /dev/stderr
echo 'dotoolc: dotoold is not connected' >&2
exit 1
fi
exec cat > "$p"

View file

@ -3,7 +3,7 @@ if [ $# != 0 ]; then
echo 'dotoold runs dotool reading from a pipe for dotoolc to write to.
dotoold will exit immediately if the pipe is already being read.
The path used for the pipe is $DOTOOL_PIPE else /tmp/dotool_pipe.
' > /dev/stderr
' >&2
[ "$1" = -h ] || [ "$1" = --help ]; exit
fi
@ -14,7 +14,7 @@ fifo_being_read(){
p="${DOTOOL_PIPE:-/tmp/dotool_pipe}"
if fifo_being_read "$p" 2> /dev/null; then
echo 'dotoold: another instance is already connected' > /dev/stderr
echo 'dotoold: another instance is already connected' >&2
exit 1
fi