如何从启动时运行的脚本打开文件

时间:2017-03-01 05:15:47

标签: c shell u-boot

我在u-boot中运行我的脚本文件。我想创建一个文件并保存我的内容。我尝试了以下内容,

cat > info.txt <<- "EOF"        // opening the file
echo "${mmcpart}" | tee info.txt           // adding contents
echo "${root_fs}" | tee -a info.txt
EOF

和,
    echo "${mmcpart}" | tee info.txt // directly adding the contents in

文件

echo "${root_fs}" | tee -a info.txt

它不工作..........任何人都可以帮我找出

1 个答案:

答案 0 :(得分:2)

u-boot不支持shell脚本语法,u-boot有hush shell,对于读取文件和操作环境变量,你可以关注this