리눅스 행번호 붙이기

1 개요[ | ]

리눅스 행번호 붙이기

2 방법1: cat[ | ]

출력명령어 | cat -n
$ ll /etc/vim | cat -n
     1	total 24
     2	drwxr-xr-x   2 root root  4096 Mar  6  2018 ./
     3	drwxr-xr-x 184 root root 12288 May 11 06:38 ../
     4	-rw-r--r--   1 root root  2149 Apr  6  2016 vimrc
     5	-rw-r--r--   1 root root   662 Apr  8  2016 vimrc.tiny

3 방법2: awk[ | ]

출력명령어 | awk '{print NR" "$0}'
$ ll /etc/vim | awk '{print NR" "$0}'
1 total 24
2 drwxr-xr-x   2 root root  4096 Mar  6  2018 ./
3 drwxr-xr-x 184 root root 12288 May 11 06:38 ../
4 -rw-r--r--   1 root root  2149 Apr  6  2016 vimrc
5 -rw-r--r--   1 root root   662 Apr  8  2016 vimrc.tiny

4 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}