728x90
[Bash Shellscript 기본다지기] here-documents를 활용한 telnet 메일 보내기
bash 메뉴얼에서 here-document 형식은 다음과 같이 설명 하고 있다.
셀스크립트는 개행 문자가 포함된 여러 라인을 개별로 처리를 하고자 한다.
이때 개행이 포함된 문장을 변수로 하거나 파일을 작성 할 때 here-document를 활용하면 유용하다.
<<[-]word
here-document
delimiter
|
telnet_mail.sh
# # ############################################## to_email="couplewith@naber.com" cDate=`date "+%Y%m%d"` subject="<< Test for mail : $cDate >> " ############################################## mail -s "$subjcet" -v $to_email <<! . Cc: No-body . ! |
728x90
반응형
'InfraPlatform' 카테고리의 다른 글
Centos 6&7 패스워드 잃어버렸을때 (Single Mode for password reset) (0) | 2017.11.20 |
---|---|
Centos 7 4.x 커널 업그레이드 (kernel upgrade) (0) | 2017.06.14 |
루비 설치하기 RUBY (0) | 2014.09.23 |
[Awk를 이용한 스크립트] - mysql 사용자 등록 관리를 위한 셀 스크립트 만들기 (0) | 2014.07.22 |
[Bash Shell-Script 기초] awk, cut, sort 활용 (0) | 2014.06.16 |
[Bash Shellscript 기본다지기] 파일 관리 ( find , wc , grep ) : 중.상급 (0) | 2014.06.16 |
[Bash Shellscript 기본다지기 - for loop ]구구단을 출력하는 셀스크립 (초급) (0) | 2014.05.29 |