本文介绍了将文本添加到文件的 Unix 命令的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有 Unix 命令将一些字符串数据添加到文本文件中?

Is there a Unix command to prepend some string data to a text file?

类似于:

prepend "to be prepended" text.txt

推荐答案

sed -i.old '1s;^;to be prepended;' inFile

  • -i 将更改写入适当的位置,如果有任何扩展,则进行备份.(在这种情况下,.old)
  • 1s;^;to be prepended; 用给定的替换字符串替换第一行的开头,使用 ; 作为命令分隔符.
    • -i writes the change in place and take a backup if any extension is given. (In this case, .old)
    • 1s;^;to be prepended; substitutes the beginning of the first line by the given replacement string, using ; as a command delimiter.
    • 这篇关于将文本添加到文件的 Unix 命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-06 05:10