InfraPlatform

[Bash Shellscript 기본다지기] here-documents를 활용한 telnet 메일 보내기

IT오이시이 2014. 8. 4. 14:26
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
반응형