Skip to content

Instantly share code, notes, and snippets.

@manojkarthick
Created June 12, 2022 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manojkarthick/760d5673b06606efb7ebe639cddf6d13 to your computer and use it in GitHub Desktop.
Save manojkarthick/760d5673b06606efb7ebe639cddf6d13 to your computer and use it in GitHub Desktop.
Get Jokes
#!/usr/bin/env bash
for i in {1..10}
do
curl -H "Accept: text/plain" https://icanhazdadjoke.com/ >> jokes.txt
echo -e "\n" >> jokes.txt
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment