svg.awk 115 B

12345678
  1. BEGIN {
  2. FS = "[ ,()]*";
  3. }
  4. /^[ ]*$/ { next; }
  5. /^#/ { next; }
  6. {
  7. printf ("%s %s %s %s\n", $1, $5, $6, $7);
  8. }