特定の行から行末までを切り出す
+100
となってる所に開始行数を入れる。
tail -n +100 production.log > production_100kara.log
特定の行〜特定の行を切り出す
-e 開始行,終了行p
とする。
終了行に p
を付けるのがポイントらしい。
sed -n -e 101000,102000p production.log > production_kiridashi.log
+100
となってる所に開始行数を入れる。
tail -n +100 production.log > production_100kara.log
-e 開始行,終了行p
とする。
終了行に p
を付けるのがポイントらしい。
sed -n -e 101000,102000p production.log > production_kiridashi.log