#!/bin/sh

###############################################################################
#									      #
#		 GNU Interactive Tools 4.3.5 redirection script		      #
#		Copyright (C) 1994 Free Software Foundation, Inc.	      #
#		    Written by Tudor Hulubei and Andrei Pitis.		      #
#									      #
###############################################################################

name=`basename $0`

if test "$#" -eq 0; then
    echo "$name: UIT internal script" >&2
    exit 255
fi


$@ | (IFS=
      while read line
      do
	  echo $line >&2
      done)

exit 1
