bmatzelle / gow

Unix command line utilities installer for Windows.
https://github.com/bmatzelle/gow/wiki
6.55k stars 363 forks source link

error while using "while" #238

Open buptjiwei opened 6 years ago

buptjiwei commented 6 years ago

I wrote codes blow and sth wrong reported

cat file.txt | while read line
do
    echo $line
done

while is not recognized as an internal or external command......

and also

for ff in `ls *`; do echo $ff;done

reported "ff was unexpected at this time"

which is ok in redhat shell, so how should i make it work,thx