【发布时间】:2013-06-28 12:56:01
【问题描述】:
下面的代码正在返回:
电子邮件---------------------------------------------- ---------------------------------- email@email.com
案例“$type”在
2)
echo "Type is outbound: $type"
contact=$(sqlplus -s ${SQLPLUS_INFO} <<EOF
SELECT email FROM table WHERE email = 'x';
exit
EOF)
echo
echo $contact
echo
;;
1)
echo "Type is inbound: $type"
;;
esac
但我只是想:
电子邮件---------------------------------------------- ---------------------------------- email@email.com
有什么帮助吗?
【问题讨论】:
-
你想要的和你得到的都是一样的。你有什么问题?