全文検索:
- 01 ファイルの指定行を抜き出す
- れで、hogehoge.confの100行目を表示 <code console> $ sed -n 100p /etc/hogehoge.conf </code> ===== 指定行間を表示 ===== ... ehoge.confの100行目~120行目を表示 <code console> $ sed -n 100,120p /etc/hogehoge.conf </code> ===== 指定行目以降を表示 ===== これで100行目以降を表示 <code> $ tail -n +100 /etc/hogehoge.conf </code> ===== 指定行目以降でawk ====