"리눅스 cat"의 두 판 사이의 차이

37번째 줄: 37번째 줄:
*[[리눅스 diff]]
*[[리눅스 diff]]
*[[리눅스 strings]]
*[[리눅스 strings]]
*[[리눅스 cat을 라인 에디터로 사용하기]]
*[[윈도우 TYPE]]
*[[윈도우 TYPE]]



2014년 10월 25일 (토) 13:09 판

  다른 뜻에 대해서는 컴퓨터 적응 검사 문서를 참조하십시오.

1 개요

cat
/bin/cat
  • 파일 보기 명령어
  • 파일 내용을 출력하는 리눅스 명령어
  • 코어유틸에 포함됨
[root@jmnote ~]# echo hello > a.txt
[root@jmnote ~]# cat a.txt
hello
[root@jmnote ~]# cat /etc/issue
CentOS release 6.5 (Final)
Kernel \r on an \m

2 -n 옵션: 행번호 보기

[root@jmnote ~]# cat -n /etc/issue
     1	CentOS release 6.5 (Final)
     2	Kernel \r on an \m
     3

3 같이 보기

4 참고 자료