Skip to content

Instantly share code, notes, and snippets.

@bwreid

bwreid/books.sh Secret

Created June 28, 2016 19:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save bwreid/cd8bd5437f19a52a02b2e197e7aa8ca4 to your computer and use it in GitHub Desktop.
Save bwreid/cd8bd5437f19a52a02b2e197e7aa8ca4 to your computer and use it in GitHub Desktop.
touch books.txt && \
echo "To Kill a Mockingbird by Harper Lee" > books.txt && \
echo "1984 by George Orwell" >> books.txt && \
echo "The Hunger Games #1 by Suzanne Collins" >> books.txt && \
echo "The Da Vinci Code by Dan Brown" >> books.txt && \
echo "The Catcher in the Rye by J.D. Salinger" >> books.txt && \
echo "Harry Potter and the Sorcerer's Stone by J.K. Rowling" >> books.txt && \
echo "Animal Farm by George Orwell" >> books.txt && \
echo "The Kite Runner by Khaled Hosseini" >> books.txt && \
echo "The Hobbit by J.R.R. Tolkien" >> books.txt && \
echo "Angels & Demons by Dan Brown" >> books.txt && \
echo "Fahrenheit 451 by Ray Bradbury" >> books.txt && \
echo "American Gods by Neil Gaiman" >> books.txt && \
echo "The Old Man and the Sea by Ernest Hemingway" >> books.txt && \
echo "Frankenstein by Mary Shelley" >> books.txt && \
echo "The Adventures of Huckleberry Finn by Mark Twain" >> books.txt && \
clear && echo "Your Books:\n" && cat books.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment