NSH: Fix redirection of output to a file. That was broken with recent changes
This commit is contained in:
parent
7834ff4ce3
commit
b15528e429
14
TODO
14
TODO
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue