#pragma section-numbers off [[TableOfContents]] = 概要 = = URL = = 先頭行に挿入 = {{{ sed -i '1i hoge' *.txt }}} 複数行入れたい場合は バックスラッシュで改行を表現 {{{ sed -i '1i ;;; -*- mode: emacs-lisp -*- \ ' *.txt }}} = 先頭行を削除 = {{{ # 先頭1行を削除 sed -i "1d" hoge.txt # 先頭1行から11行までを削除 sed -i "1,11d" hoge.txt }}} = 参考サイト = http://www.chimimo.com/sed/ http://www.linux.or.jp/JM/html/GNU_sed/man1/sed.1.html http://hp.vector.co.jp/authors/VA000770/sedlec/ http://www.treetop.to/Linux/sed.html ---- CategoryPrograming CategoryUnix