Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要#在行号 115 和 315 之间的 unix 文件中每一行的开头添加,该怎么做?
#
我尝试了以下命令:
awk '{print "#" $0;}'>filename
但这添加#到文件的每一行。该文件有 1000 多行。我只想在第 115 行和第 315 行之间添加#。请帮助
谢谢,森
尝试
sed -i '115,315 s/^/#/' filename
这将在#编号为 115 - 315 的行的开头添加一个。