반응형

아래 예제처럼 cat 명령과 EOF를 이용해서 파일을 생성할 수 있다.

2가지 방식이 있는데, 외우기 편한 쪽으로 선택해서 사용하면 된다.

(나는 방식 A가 조금 더 편하다.)

 

 

방식 A)

$  cat > example.txt <<-EOF
This is test
This is example
EOF
$

 

방식 B)

$  cat << EOF > example.txt 
This is test
This is example
EOF
$

 

 

+ Recent posts