ファイルの内容を行番号付きで表示する
ファイルの内容を表示するにはcatコマンドを使用するが、オプションなしで実行した場合、単に内容が表示されるだけ。行番号を付けてファイル内容を表示するには、catコマンドにオプション-nを付けて実行する。
ファイルの空行に行番号を付けたくない場合は、オプション-bを付ける。
●行番号付きでファイルの内容を表示
[nuy@Lion conf]$ cat -n httpd.conf 1 ## 2 ## httpd.conf -- Apache HTTP server configuration file 3 ## 4 5 # 6 # Based upon the NCSA server configuration files originally by Rob McCool. 7 # 8 # This is the main Apache server configuration file. It contains the 9 # configuration directives that give the server its instructions. 10 # See for detailed information about 11 # the directives. ↑httpd.confファイルを行番号付きで内容表示させます |
●行番号付きでファイルの内容を表示(空行に行番号を付けたくない場合)
[nuy@lion conf]$ cat -b httpd.conf
[nuy@lion conf]$ cat -b httpd.conf 4 # ↑空行は行としてカウントしない |