Google bigquery 使用bq命令行将文件从GBQ提取到不带csv头的GCS

Google bigquery 使用bq命令行将文件从GBQ提取到不带csv头的GCS,google-bigquery,Google Bigquery,是否可以运行以下命令: bq extract <source_table> <destination_uris> bq提取 并使用标志导出而不使用csv标头?与上述API标志类似,但不使用API-仅通过bq extract…使用: bq extract --noprint_header <source_table> <destination_uris> bq help extract [...] --[no]print_header: W

是否可以运行以下命令:

bq extract <source_table> <destination_uris>
bq提取
并使用标志导出而不使用csv标头?与上述API标志类似,但不使用API-仅通过
bq extract…

使用:

bq extract --noprint_header <source_table> <destination_uris> 
bq help extract

[...]
--[no]print_header: Whether to print header rows for formats that have headers.
Prints headers by default.