home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / gawk213b / messages.awk < prev    next >
Encoding:
AWK Script  |  1993-07-29  |  365 b   |  10 lines

  1. # This is a demo of different ways of printing with gawk.  Try it
  2. # with and without -c (compatibility) flag, redirecting output
  3. # from gawk to a file or not.  Some results can be quite unexpected. 
  4. BEGIN {
  5.     print "Goes to a file out1" > "out1"
  6.     print "Normal print statement"
  7.     print "This printed on stdout" > "/dev/stdout"
  8.     print "You blew it!" > "/dev/stderr"
  9. }
  10.