Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. {
  2. "sessionId": "000001",
  3. "name": "ABC",
  4. "Age": "21",
  5. "Score": {
  6. "English": "A+",
  7. "Mathematics": "B-",
  8. "String Theory": "C+"
  9. }
  10. },
  11. {
  12. "sessionId": "000001",
  13. "name": "CDE",
  14. "Age": "21",
  15. "Score": {
  16. "English": "A-",
  17. "German": "B-",
  18. "French": "C+"
  19. }
  20. },
  21. {
  22. "sessionId": "000001",
  23. "name": "EFG",
  24. "Age": "21",
  25. "Score": {
  26. "German": "A+",
  27. "Mathematics": "B-",
  28. "Machine Learning": "C+"
  29. }
  30. },
  31.  
  32. "name": "ABC",
  33. "English": "A",
  34. "name": "CDE",
  35. "English": "A",
  36.  
  37. awk -F: '/name/{name=$0} /English/{print name ORS $0}' inputfile |sed -r 's/^s+//g'
  38. "name": "ABC",
  39. "English": "A+",
  40. "name": "CDE",
  41. "English": "A-",
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement