我有一个文件entry.txt,其文本如下
$ cat entry.txt
>Main entry
This is some text to try
how to substitute the first
line of the text.
我想通过搜索字符来替换第一行>
并添加一些存储在变量中的文本:
$ var=TITLE
$ sed -i "s/>*/$var/" entry.txt
$ cat entry.txt
TITLEMain entry
TITLEThis is some text to try
TITLEhow to substitute the first
TITLEline of the text.
我怎么能够
>
替换包含且不>
单独的整行只替换第一行而不替换其他行?
谢谢。