Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- BOOKS=('In Search of Lost Time' 'Don Quixote' 'Ulysses' 'The Great Gatsby')
- for book in "${BOOKS[@]}"; do
- echo "Book: $book"
- sleep 0.5
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement