Created
November 7, 2014 18:13
-
-
Save candu/33b256292c492f154ade to your computer and use it in GitHub Desktop.
Command-line Lorem Ipsum generator using curl, lipsum.com, and jq
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
AMOUNT=5 | |
WHAT=paras | |
START=false | |
while getopts ":n:wpbls" opt; do | |
case $opt in | |
n) | |
AMOUNT=$OPTARG | |
;; | |
w) | |
WHAT=words | |
;; | |
p) | |
WHAT=paras | |
;; | |
b) | |
WHAT=bytes | |
;; | |
l) | |
WHAT=lines | |
;; | |
s) | |
START=true | |
;; | |
*) | |
echo "Invalid option: -$OPTARG" >&2 | |
;; | |
esac | |
done | |
curl -s -X POST lipsum.com/feed/json -d "amount=$AMOUNT" -d "what=$WHAT" -d"start=$START" | jq -r '.feed.lipsum' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It seems to require "lists" rather than "lines" now.