git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14782 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			13 lines
		
	
	
		
			242 B
		
	
	
	
		
			Awk
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			242 B
		
	
	
	
		
			Awk
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/awk -f
 | |
| # IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
 | |
| BEGIN {
 | |
|   xcatdport = ARGV[2]
 | |
|   xcatdhost = ARGV[1]
 | |
|   delete ARGV[1]
 | |
|   delete ARGV[2]
 | |
|   RS=""
 | |
| }
 | |
| END {
 | |
|   print $0 |& "/inet/udp/301/"xcatdhost"/"xcatdport
 | |
| }
 |