Output entire contents of original file
|
#!/usr/bin/ksh # # AWK script source file # Created by: Jeffery J. Jimes # Date: 08/22/2001 # Name: out_all.awk # Usage: $ awk -f out_all.awk sourcefile > outfile # ########################################################
{ print $0 }
|