Skip to content

Instantly share code, notes, and snippets.

@mcustiel
Last active February 20, 2023 13:04
Show Gist options
  • Save mcustiel/c464394397ffbb678ed2a4c636333912 to your computer and use it in GitHub Desktop.
Save mcustiel/c464394397ffbb678ed2a4c636333912 to your computer and use it in GitHub Desktop.
Random chuck norris fact
#!/usr/bin/env bash
api=https://api.chucknorris.io/jokes/random
contents=$(curl -s $api)
if [ "$(echo $contents | jq -r '.value')" != "" ] ; then
echo $(echo $contents | jq -r '.value')
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment