0
0

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 1 year has passed since last update.

自分用Linuxコマンド辞典(随時更新)

Last updated at Posted at 2023-06-05

sed

  • テキストの処理ができる(文字列を全置換したり、行単位で抽出したり、削除したり)
  • ワンライナーで強いらしいのでテクニカルなことができそう?
sample.txtのrakusを全てRAKUSに置換
sed -e 's/rakus/RAKUS/g' sample.txt

sample.txtの半角スペースを削除
sed -i "s/ //g" sample.txt

(随時更新)

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?