是这样的:
cat "Some text here." > myfile.txt
可能的?这样的内容myfile.txt现在将被覆盖为:
myfile.txt
Some text here.
这对我不起作用,但也不会引发任何错误。
cat对基于 - 的解决方案(不是 vim/vi/emacs 等)特别感兴趣。所有在线示例cat都与文件输入一起使用,而不是原始文本......
cat
这就是echo:
echo
echo "Some text here." > myfile.txt