Advertisement
Guest User

Untitled

a guest
Nov 12th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. wget -q -O cat.json https://api.thecatapi.com/v1/images/search?size=full
  4. jq -r '.[0].ur'l cat.json >kitty
  5. wget -q -O sweetkittie -i kitty
  6. img2txt sweetkittie
  7.  
  8.  
  9. wget -q -O joke.json http://api.icndb.com/jokes/random
  10. jq '.value.joke' joke.json
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement