NSH: Fix redirection of output to a file. That was broken with recent changes

This commit is contained in:
Gregory Nutt 2014-01-16 07:30:15 -06:00
parent 7834ff4ce3
commit b15528e429
1 changed files with 14 additions and 0 deletions

14
TODO
View File

@ -1236,6 +1236,20 @@ o File system / Generic drivers (fs/, drivers/)
insensitivity to upper/lowercase file names seem to be not
consistent in our usage - which can result in creating two
directories with the same name..."
Example using NSH:
nsh> echo "Test1" >/tmp/AtEsT.tXt
nsh> echo "Test2" >/tmp/aTeSt.TxT
nsh> ls /tmp
/tmp:
AtEsT.tXt
aTeSt.TxT
nsh> cat /tmp/aTeSt.TxT
Test2
nsh> cat /tmp/AtEsT.tXt
Test1
Status: Open
Priority: Low