home *** CD-ROM | disk | FTP | other *** search
/ Informática Multimedia: Special Games (Alt) / INFESPGAMES.iso / os2 / spl / src / ipf.awk < prev    next >
Encoding:
Text File  |  1994-04-18  |  438 b   |  29 lines

  1. START {res=0}
  2. /:h1./ {
  3.     gsub (":h1.", "", $0);
  4.     printf(":h1 res=%d.", res++);
  5.     print $0
  6.     next
  7. }
  8. /:h2./ {
  9.     gsub (":h2.", "", $0);
  10.     printf(":h2 res=%d.", res++);
  11.     print $0
  12.     next
  13. }
  14. /:h3./ {
  15.     gsub (":h3.", "", $0);
  16.     printf(":h3 res=%d.", res++);
  17.     print $0
  18.     next
  19. }
  20. /:h4./ {
  21.     gsub (":h4.", "", $0);
  22.     printf(":h4 res=%d.", res++);
  23.     print $0
  24.     next
  25. }
  26. // {
  27.     print $0
  28. }
  29.