Re: read -u how to

2005-10-24 Thread Igor Pechtchanski
On Mon, 24 Oct 2005, cygwin.20.maillinglist wrote: > Hi folks > > I have the problem that I like to use read -u to read from file. > The following script was stored under $HOME/bin/h > -- > #!/bin/bash > set -xv > ls -l $HOME/bin/h > 3<$HOME/bin/h > > while read -u

read -u how to

2005-10-24 Thread cygwin . 20 . maillinglist
Hi folks I have the problem that I like to use read -u to read from file. The following script was stored under $HOME/bin/h -- #!/bin/bash set -xv ls -l $HOME/bin/h 3<$HOME/bin/h while read -u 3 do echo $REPLY done -- The outpu