25
23

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

sedで指定行(特定の行)だけ置換する、指定行(特定の行)に文字列挿入する

25
Posted at

3行目の「start」を「end」に置換したい時
sed -e "3 s/start/end/g" hoge.txt

3行目に「moge」を挿入したいとき
sed -i -e "3i moge" hoge.txt

25
23
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
25
23

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?