2007. 11. 3. 21:24 Unix/Linux
리눅스에서의 줄번호
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2374 - July 2, 2006
http://www.ugu.com/sui/ugu/show?tip.today
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
리눅스에서의 줄 번호
만일 파일내용과 줄 번호를 원한다면(인쇄할 때)(?)
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2374 - July 2, 2006
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
리눅스에서의 줄 번호
만일 파일내용과 줄 번호를 원한다면(인쇄할 때)(?)
리눅스에서는 "nl" 명령어를 사용할 수 있다.
$ nl file.c > file.c.num
더 많은 옵션을 위해서는 man 페이지를 보라.
$ nl file.c > file.c.num
더 많은 옵션을 위해서는 man 페이지를 보라.
보통 nl은 공백이 아닌 줄만 줄번호를 붙인다.
강제로 모든 줄에 번호를 주려면 -ba 옵션을 사용하라
강제로 모든 줄에 번호를 주려면 -ba 옵션을 사용하라
$ nl -ba file.c >file.c.all_num
@@@@@@@@@@@@@@@@@@@@[ 원문 ]@@@@@@@@@@@@@@@@@@@@
LINE NUMBERS IN LINUX
If you want a file with line
numbers (say for printing).
You can use the "nl" command
in linux.
$ nl file.c > file.c.num
See man for more options.
Normally nl gives line numbers
only for non blank lines.
To force it to give it to all lines
use -ba option:
$ nl -ba file.c >file.c.all_num
If you want a file with line
numbers (say for printing).
You can use the "nl" command
in linux.
$ nl file.c > file.c.num
See man for more options.
Normally nl gives line numbers
only for non blank lines.
To force it to give it to all lines
use -ba option:
$ nl -ba file.c >file.c.all_num
반응형