Sponsored Content
Operating Systems Solaris Host name in front of pkginfo output Post 302894086 by busi386 on Monday 24th of March 2014 02:27:58 AM
Old 03-24-2014
Clarification

Allow me to clarify my request for this post.

Code:
the command pkginfo -l, provides a long listing of all packages installed on a solaris system. the output would look similar to this:
 
PKGINST:  SUNWzsh
      NAME:  Z shell (zsh)
  CATEGORY:  system
      ARCH:  sparc
   VERSION:  11.10.0,REV=2005.01.08.05.16
   BASEDIR:  /
    VENDOR:  Oracle Corporation
      DESC:  Z shell (zsh)
    PSTAMP:  sfw10-patch20110415091259
  INSTDATE:  Jul 17 2013 15:07
   HOTLINE:  Please contact your local service provider
    STATUS:  completely installed
     FILES:      594 installed pathnames
                   6 shared pathnames
                   1 linked files
                  32 directories
                  30 executables
                5585 blocks used (approx)
 
   PKGINST:  TWeagent
      NAME:  Tripwire Enterprise Agent
  CATEGORY:  application
      ARCH:  sparc
   VERSION:  8.2.3
   BASEDIR:  /usr/local/tripwire/te/agent
    PSTAMP:  tripwire
  INSTDATE:  Aug 25 2013 12:03
    STATUS:  completely installed
     FILES:      904 installed pathnames
                 123 directories
                 762 executables
              352571 blocks used (approx)
 
   PKGINST:  samgr-client
      NAME:  SEA client support sunOS v5
  CATEGORY:  SAT
      ARCH:  sparc
   VERSION:  2.4.1.3
   BASEDIR:  /
    VENDOR:  IBM
    PSTAMP:  Wed Mar  9 22:18:10 MST 2011
  INSTDATE:  Apr 22 2012 01:37
    STATUS:  completely installed
     FILES:       12 installed pathnames
                   1 shared pathnames
                   4 directories
                   8 executables
                 419 blocks used (approx)
 
....so on and so forth for all packages....

I dont need all the output. I am interested in capturing only 3 pieces of information, which are NAME,VERSION, and BASEDIR. Im my limited understanding, all these three pieces of information would make up a record.
The goal is to insert the server name in front of every record and dump the data into a comma seperated file. Once we have all the data from all our servers will will combine them into an excel spread sheet(comman delimited) for review. An example of the desired output is as follows:

Code:
servername, NAME, VERSION,BASDIR
servername, NAME, VERSION,BASDIR
servername, NAME, VERSION,BASDIR
so on and so forth....

so far I have been able to insert the commas with the following script:
Code:
pkginfo -l | egrep '(BASEDIR|NAME|VERSION)' | sed 's/  *//g' | awk '{print}' ORS=','

which produces the following output...

Code:
NAME:RSAAccessManagerAgent4.8forSunJavaSystemWebServer,VERSION:4.8,BASEDIR:/opt,NAME:cas_cpsampleconf-Classactionscriptcpsampleconf,VERSION:1.42,REV=2010.11.26,BASEDIR:/,NAME:cas_cptemplates-Classactionscriptcptemplates,VERSION:1.49,
.....so on and so forth for all the packages......

I have discovered that a carriage return may be needed.

at this point I seem to be stuck. I was able to insert the server name
but only for a few records. For some reason it will insert the server neame every 40th record. The code I was using to do this is:

Code:
for PNAME in `pkginfo -l | egrep '(NAME|VERSION|BASEDIR)' | sed 's/  *//g' | awk '{print}' ORS=',' `
do
 echo "`uname -n`, $PNAME" 
done

Any assistance would be greatly appreciated.

on a side not, are there any books i should be reading for scripting?
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

format and pkginfo -l question

I have a Solaris 2.6 box flagging an "Error block: 308918" in the messages file when I execute a pkginfo -l. pkginfo with no flags returns no errors. I think I need to use format to mark this block and then restore the database used by pkginfo for backup. Any advice/input welcome. Thanks (4 Replies)
Discussion started by: 98_1LE
4 Replies

2. UNIX for Dummies Questions & Answers

Sending tar output to a remote host

Our group has recently inherited 15 servers that have not been maintained for over a year. My first action is to backup the units however there is not enough disk space on most of them to run tar. My supervisor said to look at piping the tar output to another machine, however I have been unable... (3 Replies)
Discussion started by: thumper
3 Replies

3. Solaris

difference between pkginfo and pkgchk command

can anyone explain me the difference between pkginfo and pkgchk command in solaris. Both are used to display the package details, then what is the difference between both. (5 Replies)
Discussion started by: rogerben
5 Replies

4. UNIX for Advanced & Expert Users

rpm and pkginfo question

Can the root hide some of the results of the above commands from a regular user? i.e. $>rpm and $>sudo rpm will give different results (1 Reply)
Discussion started by: noam128
1 Replies

5. Solaris

grep help with pkginfo

im looking for a way to eliminate the packages from SUN when i do a pkginfo. thought this would work, but no luck. pkginfo | grep what am i doing wrong? Thanks (2 Replies)
Discussion started by: jrich523
2 Replies

6. Shell Programming and Scripting

rsh to many hosts the ftp output to single host

Hi guys. i need some help, i need to create a script in tcsh that rsh into all my hosts that we have at our business, then cd to a directory (cd /apps/users) then grab a file from the users folder and ftp it back to my windows machine. can someone please help? Kind regards. Brian Behrens (2 Replies)
Discussion started by: brian112
2 Replies

7. Solaris

pkgadd, pkginfo, ssh not working

Got a feeling someone has been fiddling around or something has got corrupt but I'm getting the following errors now:- -bash-3.00# pkginfo ld.so.1: pkginfo: fatal: libssl.so.0.9.7: open failed: No such file or directory Killed -bash-3.00# and also ssh:- -bash-3.00# ssh ld.so.1: ssh:... (5 Replies)
Discussion started by: psychocandy
5 Replies

8. Solaris

Host name in front of ps output

hello All. I am working on something that should be really simply. It turns out that its not. I am trying to produce output to list the hostname along with all the current running programs. the script im using is: for PS in `ps -Ao "user,args" | cut -d' ' -f1,2` do echo "`uname -n`, $PS"... (5 Replies)
Discussion started by: busi386
5 Replies

9. UNIX for Dummies Questions & Answers

How to get/print host string only from tnsping output?

Hello All, I am using Linux OS. My idea is get the host name when we do tnsping in oracle. output of : tnsping DOELO01 TNS Ping Utility for Linux: Version 11.2.0.3.0 - Production on 15-OCT-2015 20:20:05 Copyright (c) 1997, 2011, Oracle. All rights reserved. Used parameter files:... (2 Replies)
Discussion started by: Ariean
2 Replies

10. UNIX for Beginners Questions & Answers

Output top line for each unique host

Hi All, Please can you help with the output whole line for each host (column 3) and the top line of column 9 - the lastest only What is being outputted 243272484 3 nbmedln1p03 LDN_TEST_UX_JM 1488198368 0000000007 1 INC_1MTH 0 ********** 243272492 3 nbmedln1p03 LDN_TEST_UX_JM... (10 Replies)
Discussion started by: Junes
10 Replies
All times are GMT -4. The time now is 01:42 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy