Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过 shell 脚本在文件中写入一些东西,但在脚本中我不想使用echo命令写入文件。
echo
有没有其他方法可以在不使用命令的情况下写入文件echo?
很多。
printf "foo" > somefile cat > somefile << EOF foo EOF
bash 允许:
cat > somefile <<< "foo"