LoginSignup
1
1

More than 5 years have passed since last update.

Terminal のテキスト編集

Last updated at Posted at 2017-07-07

sedの使い方

# 1行目から5行目を削除する
# -iは上書き, -eはコマンド
sed -i -e 1,5d /tmp/dow.csv 
# 1行目から5行目以外を削除する(シングルクォーテーションいる)
sed -i -e '1,5!d' /tmp/dow.csv 
1
1
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
1
1