cbyrohl / scida

scida is an out-of-the-box analysis tool for large scientific datasets. It primarily supports the astrophysics community, focusing on cosmological and galaxy formation simulations using particles or unstructured meshes, as well as large observational datasets. This tool uses dask, allowing analysis to scale.
https://scida.io
MIT License
28 stars 4 forks source link

Documentation: tutorial `wget` command needs quotes for its argument #156

Closed evertrol closed 8 months ago

evertrol commented 8 months ago

Minor thing I ran across while going through the simulation data tutorial:

wget https://heibox.uni-heidelberg.de/f/dc65a8c75220477eb62d/?dl=1 -O snapshot.tar.gz

will need quotes, as some shells may attempt to match the ?, and fail with a no matches found error.

For example, zsh does this, which is nowadays the default shel on macOS.

Thus:

wget "https://heibox.uni-heidelberg.de/f/dc65a8c75220477eb62d/?dl=1" -O snapshot.tar.gz
cbyrohl commented 8 months ago

Thanks a lot @evertrol, I'll adjust it accordingly.