我在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
它不工作..........任何人都可以帮我找出