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.
#Unixファイルのすべての行のbegginingで、行番号115と315の間に追加する必要があります。
#
以下のコマンドを試しました:
awk '{print "#" $0;}'>filename
#しかし、これはファイルのすべての行に追加されました。ファイルには 1000 行を超えています。115 行目と 315 行目の間に # を追加したいだけです。親切に助けてください
ありがとう、セン
試す
sed -i '115,315 s/^/#/' filename
#これにより、番号が 115 ~ 315 の行の先頭にa が追加されます。