8 lines
133 B
Bash
Executable File
8 lines
133 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
pushd $(dirname $0) &>/dev/null
|
|
|
|
curl -o rawdata/nhats.json https://ssd-api.jpl.nasa.gov/nhats.api
|
|
|
|
popd &>/dev/null
|