Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed a mismatch bug and updated the wiki link. #1

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ _Note: This command upgrades the bashdatacatalog if it's already installed._
$ bashdatacatalog-fetch catalog1.csv
```

3. Run listing queries (e.g., download all missing files with 4 parallel download streams):
3. Run listing queries (e.g., download all missing files line by line with 4 parallel download streams):
```console
$ bashdatacatalog-list -am -f xargs-curl catalog1.csv | xargs -P 4 curl
$ bashdatacatalog-list -am -f xargs-curl catalog1.csv | xargs -L 1 -P 4 curl
```
## 💡 Documentation

See the Wiki for documentation on using the bashdatacatalog: https://github.com/LiamBindle/bashdatacatalog/wiki.
See the Wiki for documentation on using the bashdatacatalog: https://github.com/geoschem/bashdatacatalog/wiki.

If you are a GEOS-Chem user, see the standalone instructions for GEOS-Chem users [here](https://github.com/LiamBindle/bashdatacatalog/wiki/Instructions-for-GEOS-Chem-Users).
If you are a GEOS-Chem user, see the standalone instructions for GEOS-Chem users [here](https://github.com/geoschem/bashdatacatalog/wiki/Instructions-for-GEOS-Chem-Users).

For options and arguments to the `bashdatacatalog-list` command, see
```console
Expand Down