리눅스 column

  다른 뜻에 대해서는 컬럼 문서를 참조하십시오.

1 개요[ | ]

리눅스 column
/usr/bin/column
  • 목록의 컬럼을 맞추는 리눅스 명령어
  • 우분투 패키지 bsdmainutils
[root@zetawiki ~]# echo -e "a b c\n123 456 789"
a b c
123 456 789
[root@zetawiki ~]# echo -e "a b c\n123 456 789" | column -t
a    b    c
123  456  789
testuser@localhost:~$ cat /etc/os-release | head -1
PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
testuser@localhost:~$ column -V
column from util-linux 2.36.1

2 같이 보기[ | ]

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