Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable colors in cqlsh

Tags:

cassandra

cql

cqlsh, the CQL command prompt for Apache Cassandra, is programmed to show colors in the query results. Is there an easy way to disable colors in cqlsh ?

like image 390
Benevolent Engineer Avatar asked Sep 07 '12 23:09

Benevolent Engineer


2 Answers

To disable color output use ./bin/cqlsh --no-color

Refer

like image 86
Pargavi Rajendran Avatar answered Sep 30 '22 02:09

Pargavi Rajendran


Just have $TERM set to something that doesn't support color. For example,

~$ TERM=dumb cqlsh
like image 41
the paul Avatar answered Sep 30 '22 02:09

the paul