From 1093a5043dd52dbb6d670a2c26fcbc2bd02cef9d Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Fri, 2 May 2008 18:36:16 +0000 Subject: [PATCH] -Actually put in the getpostscript.awk script that was missing git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1252 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT/postscripts/getpostscript.awk | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 xCAT/postscripts/getpostscript.awk diff --git a/xCAT/postscripts/getpostscript.awk b/xCAT/postscripts/getpostscript.awk new file mode 100755 index 000000000..a2ad423c6 --- /dev/null +++ b/xCAT/postscripts/getpostscript.awk @@ -0,0 +1,15 @@ +#!/usr/bin/awk -f +BEGIN { + server = "/inet/tcp/0/127.0.0.1/400" + quit = "no" + + + print "" |& server + print " getpostscript" |& server + print " install" |& server + print "" |& server + + while (server |& getline) { + print $0 + } +}