Newsgroups: comp.bugs.sys5 Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!think.com!zaphod.mps.ohio-state.edu!wuarchive!uunet!digibd!rick From: rick@digibd.com (Rick Richardson) Subject: SVR4 /bin/sh BUG Organization: DigiBoard Incorporated, Eden Prairie, MN Date: Thu, 30 May 91 03:42:23 GMT Message-ID: <1991May30.034223.29061@digibd.com> I'm posting this here in the hopes that the various vendors of SVR4 fix this in their next releases. Known to fail on AT&T, HCI, Commodore, and i860 SVR4's. # # Demonstrates bug in SVR4 /bin/sh # Works OK with /bin/sh on SVR3 and XENIX # Works OK with /bin/ksh on SVR4 # # Should output the first line of /etc/passwd four times # Only does it three times on SVR4 and then hangs # # Seems to be related to changing fd0 in a function # read_by_func() { exec 3<&0 0<$1 read x echo $x exec 0<&3 3<&- } exec 3<&0 0