From b15528e429ec52653f5b6afab450aed56125fac2 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 16 Jan 2014 07:30:15 -0600 Subject: [PATCH] NSH: Fix redirection of output to a file. That was broken with recent changes --- TODO | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/TODO b/TODO index 829ad95b4f..bdeef40d1b 100644 --- a/TODO +++ b/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