在 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 一定要為最左邊的第一個字元
在 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 一定要為最左邊的第一個字元
留言