Skip to content

Instantly share code, notes, and snippets.

@dewomser
Last active September 12, 2024 12:02
Show Gist options
  • Save dewomser/5fecba0fcb82ba08443495e9ded45d70 to your computer and use it in GitHub Desktop.
Save dewomser/5fecba0fcb82ba08443495e9ded45d70 to your computer and use it in GitHub Desktop.
How many astronauts in space ? Bash 1-liner
#!/bin/bash
#curl -ks http://api.open-notify.org/astros.json|jq '[.[] ] | .[-2]'
#Toot to Mastodon
a=$(curl -ks http://api.open-notify.org/astros.json|jq '[.[] ] | .[-2]')
d=$(date)
toot post "Heute am $d sind $a Astronauten im Weltall"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment