是否有 Unix 命令将一些字符串数据添加到文本文件中?
就像是:
prepend "to be prepended" text.txt
sed -i.old '1s;^;to be prepended;' inFile
-i
.old
1s;^;to be prepended;
;