Here are examples of wget commands that will download some of the SLICS products *** 1- Download lines of sight of the KiDS-450 mock source catalogues: By clicking on the 'KiDS-450 mock source catalogues' link, you will be redirected to a webpage where these mock products are hosted. Currently, this address is: http://cuillin.roe.ac.uk/~jharno/SLICS/MockProducts/KiDS450/ but that might change in the future. You will also note that the file names for the different LOS are: GalCatalog_LOS[X].fits where X runs between 1 and 819. The following wget command will download LOS1-9 wget -r -nd -nv "http://cuillin.roe.ac.uk/~jharno/SLICS/MockProducts/KiDS450/" -P ./KiDS450_download_dir/ -A "GalCatalog_LOS?.fits" while the following wget command will download LOS100-199 wget -r -nd -nv "http://cuillin.roe.ac.uk/~jharno/SLICS/MockProducts/KiDS450/" -P ./KiDS450_download_dir/ -A "GalCatalog_LOS1??.fits" '-r' is needed for recursive downloads '-nd' removes the full directory hierarchy '-nv' makes the process less verbosy '-P' specifies the download directory on your local machine '-A' specifies the filter to download only specific files *** 2-Download all CMASS mocks By clicking on the 'CMASS' link, you will be directed to the CMASS repository, which is currently: http://cuillin.roe.ac.uk/~jharno/SLICS/MockProducts/CMASS/ you can get the full directory with wget -r -nd -nv "http://cuillin.roe.ac.uk/~jharno/SLICS/MockProducts/CMASS/" -P ./CMASS_download_dir/