在 console 介面時的用法
cat > abc.txt << EOF
> 123
> 234
> end
> EOF

cat abc.txt

123
234
end

在 shell script 裡的用法
vi test.sh

cat << EOF
123
qwe
end
EOF

sh test.sh

123
qwe
end

備註
EOF 一定要為最左邊的第一個字元

Related posts 相關文章
find指令,搭配exec與xargs語法參數
More...
top指令
More...
sysctl指令
More...
rarlinux 指令–壓縮分割加密檔案
More...

作者

留言

撰寫回覆或留言

發佈留言必須填寫的電子郵件地址不會公開。