home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / a / bin / gawk-2.15 / gawk-2 / gawk-2.15.6 / test / header.awk < prev    next >
Encoding:
AWK Script  |  1993-10-19  |  92 b   |  6 lines

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