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 / messages.awk < prev    next >
Encoding:
AWK Script  |  1993-10-19  |  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.