Re: [RFC PATCH v1 17/21] cli: hush_2021: Enable using \< and \> as string compare operators.

2022-02-06 Thread Francis Laniel
Le mercredi 12 janvier 2022, 21:03:40 CET Simon Glass a écrit : > Hi Francis, > > On Fri, 31 Dec 2021 at 09:14, Francis Laniel > > wrote: > > In Busybox hush, '<' and '>' are used as redirection operators. > > For example, cat foo > bar will write content of file foo inside file bar. > > In U-Bo

Re: [RFC PATCH v1 17/21] cli: hush_2021: Enable using \< and \> as string compare operators.

2022-01-12 Thread Simon Glass
Hi Francis, On Fri, 31 Dec 2021 at 09:14, Francis Laniel wrote: > > In Busybox hush, '<' and '>' are used as redirection operators. > For example, cat foo > bar will write content of file foo inside file bar. > In U-Boot, we do not have file system, so we can hardly redirect command > output > i

[RFC PATCH v1 17/21] cli: hush_2021: Enable using \< and \> as string compare operators.

2021-12-31 Thread Francis Laniel
In Busybox hush, '<' and '>' are used as redirection operators. For example, cat foo > bar will write content of file foo inside file bar. In U-Boot, we do not have file system, so we can hardly redirect command output inside a file. But, in actual U-Boot hush, these operators ('<' and '>') are us