2

我有这个脚本...

#!/bin/sh

list=`/usr/bin/yasql user/xxxx@dev --batch` <<EOT
select h.hostname from host h, server s where s.id = h.id and s.server_type = 'DNS';
EOT

for i in $list
do
    echo $i
done

但是当然它不起作用,因为我不明白如何将 HEREDOC 与反引号混合在一起 ``

4

1 回答 1

2
list=`/usr/bin/yasql user/xxxx@dev --batch <<EOT
select h.hostname from host h, server s where s.id = h.id and s.server_type = 'DNS';
EOT`
于 2013-04-08T19:50:35.177 回答