Re: bin/177674: /bin/sh 'while read X' loop problem
The following reply was made to PR bin/177674; it has been noted by GNATS.
From: poyopoyo@puripuri.plala.or.jp
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: Re: bin/177674: /bin/sh 'while read X' loop problem
Date: Sun, 07 Apr 2013 05:53:49 +0900
At Sat, 6 Apr 2013 11:32:24 -0900 (AKST),
Joe Public wrote:
> OK: while read X; do echo $X; done < FILEWITHMP3PATHNAMES
> OK: while read X; do ls -l $X; done < FILEWITHMP3PATHNAMES
> FAIL: while read X; do mplayer $X; done < FILEWITHMP3PATHNAMES
The first iteration of mplayer eats up all stdin.
You can
while read X; do mplayer $X < /dev/tty; done
This is not a bug at all.
--
kuro
_______________________________________________
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscribe@freebsd.org"
討論串 (同標題文章)
完整討論串 (本文為第 2 之 3 篇):