使用带有-f选项的cqlsh

时间:2016-02-17 17:25:30

标签: cassandra cqlsh

我们可以像这样使用cqlsh -f吗?

psql -U maint_sa -p 3254 postgres -f - << EOT
SHOW ALL;
EOT

在cqlsh上我有以下内容:

cqlsh -f - << EOT
> DISCRIBE KEYSTORE ks1;
> EOT
Can't open '-': [Errno 2] No such file or directory: '-' 

1 个答案:

答案 0 :(得分:3)

您是否尝试将其回显到命令行:

echo "DESC KEYSPACE ks1; exit" | cqlsh