デフォルトではheadコマンドはテキストの先頭から10行のみを表示してくれますが、
sedコマンドで同じことをしてみたいと思います。
cat /usr/src/linux/Makefile | sed -ne '1,10p' VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 0 EXTRAVERSION = # *DOCUMENTATION* # To see a list of typical targets execute "make help" # More info can be located in ./README # Comments in this file are targeted only to the developer, do not # expect to learn how to build the kernel reading this file.
でも、
cat /usr/src/linux/Makefile | sed -ne ‘1,10p’
よりも
cat /usr/src/linux/Makefile | head
と入力した方がスマートなので、headを使いましょう。
コメント