blob: a8814a90a139c9ced2915def029f4b2a80376b99 (
plain) (
blame)
1
2
3
4
5
6
|
# Get today's Astronomy Picture of the Day (APOD) from NASA
printf \
"https://apod.nasa.gov/apod/%s\\n" \
"$(curl --silent "https://apod.nasa.gov/apod/" |
grep -Po 'SRC="\K[^"]+')"
|