2021-03-18 00:02:36 +03:00
# Download file to disk
2021-06-29 19:27:09 -05:00
Example that shows how to work with disk access and how to link several Wasm modules into a service.
2021-03-18 00:02:36 +03:00
# Build & deploy it
2021-06-29 19:27:09 -05:00
2021-03-18 00:02:36 +03:00
```shell
./deploy.sh
```
# Call it
2021-06-29 19:27:09 -05:00
2021-03-18 00:02:36 +03:00
```shell
2022-02-16 10:21:21 -06:00
aqua run \
--addr /dns4/kras-06.fluence.dev/tcp/19001/wss/p2p/12D3KooWDUszU2NeWyUVjCXhGEt1MoZrhvdmaQQwtZUriuGN1jTr \
2022-03-23 13:29:44 -05:00
-i download_url.aqua \
2022-06-29 10:51:41 +02:00
-f'download("https://fluence.network/img/svg/logo_new.svg", "logo.svg", "< your-service-peer-id > ", "< your-service-id > ")'
2021-03-18 00:02:36 +03:00
```
2022-06-29 10:51:41 +02:00
Please note that the `<your-service-peer-id>` is a peer where you deployed your service to using the `deploy.sh` script and the `<your-service-id>` is one you get after successfully deploying you service on the peer, e.g.:
```
...
Now time to make a blueprint...
Blueprint id:
d0a0c3cff0b371f833918ceb7dccbb8e38e3847bc7bf5d35a0e730f24568e13e
And your service id is:
"46477b20-c061-46ea-89bc-25906ad543d6"
```
For more in depth reading on the example please refer to the [Marine Examples Readme ](../README.md )