Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. # !/bin/awk
  2.  
  3. BEGIN { total=0; RS = "END"; } {
  4. {
  5. if (match($1, "NAME")) {
  6. print $2;
  7. }
  8. if (match($1, "SAVE")) {
  9. total = total + ($2 * $3);
  10. print total;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement