by shigemk2

当面は技術的なことしか書かない

prコマンド

ファイルの書式を整える。印刷する前の整形によく利用されるコマンドだ。

pr -l ページ長 +開始ページ:終了ページ ファイル名

以下は1ページあたり30行として1ページ目と2ページ目を出力する。

vagrant@precise64:~$ pr -l 30 +1:2 /etc/apache2/apache2.conf 


2012-02-07 04:16            /etc/apache2/apache2.conf             Page 1


#
# Based upon the NCSA server configuration files originally by Rob McCool.
#
# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See http://httpd.apache.org/docs/2.2/ for detailed information about
# the directives.
(略)

2012-02-07 04:16            /etc/apache2/apache2.conf             Page 2

#     different IP addresses or hostnames and have them handled by the
#     same Apache server process.
(略)

出典については…気にするな!