home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gawk-2.15.6-base.tgz / gawk-2.15.6-base.tar / fsf / gawk / test / header.awk < prev    next >
Text File  |  1993-10-19  |  92b  |  6 lines

  1. BEGIN{
  2.     "date" | getline cur_time
  3.     close ("date")
  4.     print "This line printed on", cur_time
  5. }
  6.