Guest User

Untitled

a guest
May 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. You can also thank him for teaching you bugs.
  2.  
  3. In bash 4, do:
  4.  
  5. readarray -t myarray < file
  6.  
  7. In bash 3, do:
  8.  
  9. i=0; while IFS= read -r myarray[i++]; do :; done < file
Add Comment
Please, Sign In to add comment