On 2/25/2022 11:36 PM, Anuj Bhargava wrote:
Tried the following
wget -O 2019.csv
http://xx.xxx.xxx.xxx:8983/solr/data_2019/select?q=*%3A*&rows=20000&wt=csv
It is not saving the total rows specified but just a few - saved [9042/9042]
Try putting the URL in quotes:
wget -O 2019.csv
"http://xx.xxx.xxx.xxx:8983/solr/data_2019/select?q=*%3A*&rows=20000&wt=csv"
It behaved that way because the & is a special character in a unix shell
(it will cause what precedes the & to run in the background), and
without the quotes, it will be handled by the shell, not sent to the
wget command.
This is why whenever I am using curl or wget, I type the command, a
space, then two quotes, and use the left arrow to put the cursor between
the quotes, then I paste the URL in.
Thanks,
Shawn