非常简单的问题,我如何在 shell 中结合 echo 和 cat,我正在尝试将文件的内容写入另一个带有前置字符串的文件?
如果 /tmp/file 看起来像这样:
this is a test
我想运行这个:
echo "PREPENDED STRING"
cat /tmp/file | sed 's/test/test2/g' > /tmp/result
所以 /tmp/result 看起来像这样:
PREPENDED STRINGthis is a test2
谢谢。