Advertisement
Sergio_Istea

for_book.sh

May 9th, 2022
1,094
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.17 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3.  
  4.  
  5.  
  6. BOOKS=('In Search of Lost Time' 'Don Quixote' 'Ulysses' 'The Great Gatsby')
  7.  
  8. for book in "${BOOKS[@]}"; do
  9.   echo "Book: $book"
  10.   sleep 0.5
  11. done
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement