legendtkl opened a new pull request #8442: Website Doc: fix bash command URL: https://github.com/apache/incubator-druid/pull/8442 * fix "gunzip -k" to "gunzip -c" ### Description When I unzip the gz file as the doc ```bash gunzip -k wikiticker-2015-09-12-sampled.json.gz ``` I got the error message ```bash gzip: invalid option -- 'k' Try `gzip --help' for more information. ``` ### Fix unzip the gz file, and retain the gz file ```bash gunzip -c wikiticker-2015-09-12-sampled.json.gz > wikiticker-2015-09-12-sampled.json ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
