是否有一个shell命令在文件的每一行中插入一串字符

tri*_*ity 0 shell file

是否有任何shell命令在文件的每一行中插入一串字符.. <在每一行的开头或结尾>

dub*_*jim 6

其中很多.

这将有效:

sed -i -e 's/.*/START & END/' file
Run Code Online (Sandbox Code Playgroud)