Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. browser browserId browserName
  2. country countryId countryName
  3. event eventId eventName
  4.  
  5. myArray=(
  6. "browser browserId browserName"
  7. "country countryId countryName"
  8. "event eventId eventName")
  9.  
  10. for afile in "${myArray[@]}"
  11. do
  12. aline=($afile)
  13. filename=${aline[0]}
  14. column1=${aline[1]}
  15. column2=${aline[2]}
  16. done
  17.  
  18. afile=($afile)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement