同一脚本中heredocument输出内容作为函数的输入使用 #!/bin/bash geo () { read a read b read c } geo <<EOF 1 2 3 EOF echo $a $b $c exit 0 上一页➡️ 下一页➡️