#TIL #bash 스크립트에서 here document로 긴 파일을 쉽게 만드는 법
cat << EOF > /tmp/yourfilehere These contents will be written to the file. This line is indented. EOF
cat << EOF > /tmp/yourfilehere These contents will be written to the file. This line is indented. EOF