Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. src_dir=source1
  2. src_dir=source2
  3. dst_dir=dest1
  4. whatever_thing=thing1
  5. whatever_thing=thing2
  6.  
  7. src_dir=(source1 source2)
  8. dst_dir=(dest1)
  9. whatever_thing=(thing1 thing2)
  10.  
  11. while read -r -a line
  12. do
  13. IFS='= ' read -r -a array <<< "$line"
  14. "${array[0]}"+="${array[1]}"
  15. done < file.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement