U-boot管道命令输出

时间:2014-11-11 00:58:45

标签: linux embedded embedded-linux u-boot

在U-boot中,可以将命令的输出传递给变量:

U-Boot: ping 192.168.0.0.1 | ping_res
U-Boot: printenv ping_res

由于

1 个答案:

答案 0 :(得分:0)

U-Boot的标准CLI可以替换为Hush shell,但其功能似乎不包括管道(U-Boot没有多任务处理)或I / O重定向。请参阅https://github.com/wilsonpage/fastdom

注意:管道和变量赋值的示例不正确。

(从http://www.denx.de/wiki/view/DULG/CommandLineParsing创建的答案)