Extract RPM name from path to .rpm file


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Extract RPM name from path to .rpm file
# 1  
Old 11-17-2009
Extract RPM name from path to .rpm file

It's the end of the day and I just can't get my head around this. I'm trying to extract just the name of the RPM from the path to a .rpm file. So from:
Code:
/home/me/rpm/RPMS/i386/nagios-our-plugins-1.2-6.i386.rpm

I need to extract 'nagios-our-plugins'.

I can't get the awk syntax right:
Code:
awk '{ split($STUFF, a, "-") print $a[1] }'

(where $STUFF is a bash variable that contains the path).

Can anyone help me out with a awk, sed or even straight bash script to do this?
# 2  
Old 11-17-2009
A solution with sed :
Code:
$ echo /home/me/rpm/RPMS/i386/nagios-our-plugins-1.2-6.i386.rpm | sed 's_.*/\([^.]*\).*_\1_'
nagios-our-plugins-1
$

Jean-Pierre.
# 3  
Old 11-17-2009
Quote:
Originally Posted by aussieos
I'm trying to extract just the name of the RPM from the path to a .rpm file. So from:
Code:
/home/me/rpm/RPMS/i386/nagios-our-plugins-1.2-6.i386.rpm

I need to extract 'nagios-our-plugins'.

There's no need for an external command. In any POSIX shell:

Code:
path=/home/me/rpm/RPMS/i386/nagios-our-plugins-1.2-6.i386.rpm
rpm=${path##*/}
name=${rpm%%-[0-9]*}

# 4  
Old 11-18-2009
Thanks, the below worked perfectly:
path=/home/me/rpm/RPMS/i386/nagios-our-plugins-1.2-6.i386.rpm
rpm=${path##*/}
name=${rpm%%-[0-9]*}
# 5  
Old 11-18-2009
Need help with extracting records from unix file

Hi,

Please help, Input file is on Linux box and the input file has data in just one line with 1699741696 characters.

Sample Input:
<xml><document coll="uspatfull" version="0"><CMSdoc>xxxantivirus <tag1>1</tag1></CMSdoc></document><document coll="uspatfull" version="0"><CMSdoc>yyy<tag1> a</tag1></CMSdoc></document>><document coll="uspatfull" version="0"><CMSdoc>likeavirusesxxx<tag1>aaa</tag1></CMSdoc></document></xml>

Output should be:
If data like "virus" appears anywhere between the document tags we need that in the output.

<xml><document coll="uspatfull" version="0"><CMSdoc>xxxantivirus <tag1>1</tag1></CMSdoc></document><document coll="uspatfull" version="0"><CMSdoc>likeavirusesxxx<tag1>aaa</tag1></CMSdoc></document></xml>

Thanks!
# 6  
Old 11-18-2009
Gaya,

Please do not add a new question on a different subject to an existing thread.
You should open a new thread instead.

Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Rpm issue with autoconf-2.63-1.AIX6.1.noarch.rpm

dears i am trying to install the autoconf-2.63-1.aix6.1.noarch.rpm but its shows the below error message . P700_dev/svn/dependencies>rpm -i autoconf-2.63-1.aix6.1.noarch.rpm error: failed dependencies: m4 is needed by autoconf-2.63-1 P700_dev/svn/dependencies> (6 Replies)
Discussion started by: thecobra151
6 Replies

2. UNIX for Dummies Questions & Answers

Can't install rpm package with --prefix in new path.Error: package is not relocatable

Hello, i have downloaded an rpm package "hadoop-0.20.205.0-1.amd64.rpm" in /usr/local/ directory. I'm trying to install the rpm package in a new path/location (/usr/local/hadoop-0.20.205), but i can't. I did: 1st try: Didn't work sudo rpm -i --prefix=/usr/local/hadoop-0.20.205... (1 Reply)
Discussion started by: g_p
1 Replies

3. Red Hat

Creating rpm package file

Hi, I have a binary file ans some scripts which copy the binary file to a location and create some files and then add a entry to cron . I want to create a rpm package file for all these.So that if a user run: rpm -i my.rpm the binary is copied and scripts are run. Can anyone help me in... (1 Reply)
Discussion started by: kailash19
1 Replies

4. Shell Programming and Scripting

How to make RPM not write to RPM database if RPM fails to deploy?

How to make RPM not write to RPM database if RPM fails to deploy? IE I create an rpm spec file that contains the following if then exit 1 fi My rpm will fail at deployment, but if I do rpm -qa , I can see the rpm in the rpm db (3 Replies)
Discussion started by: 3junior
3 Replies

5. SuSE

How to install .src.rpm ? ( source rpm )

Hi, I have got few RPM's from rpmfind.net ( mainly gcc ). But it seems to be src files instead of the image. so I think we have to build the src files according to target machine using rpmbuild. Can any one help me with 1) Various options of rpm build that have to be taken care 2)... (3 Replies)
Discussion started by: Sivaswami
3 Replies

6. Linux

Converting source rpm to binary rpm

Hi, I need to install an rpm file,but I only have '.src.rpm' version of it. I want to convert it to a binary rpm. so I tried this rpm --rebuild somethin.src.rpm But I am gettin '--rebuild:Invalid option' as output Is there another way to rebuild source rpm.? Thanks in... (2 Replies)
Discussion started by: eamani_sun
2 Replies

7. UNIX for Dummies Questions & Answers

Solaris - Can it install RPM file?

Currently i just installed solaris 10 now i want to install a package in rpm format which i used to install in Linux can it install in Solaris 10 as well ? if yes,what is the command ? last time in linux i used to type this command #rpm -i xxxxx.rpm but i tried in linux it not... (3 Replies)
Discussion started by: bluefries
3 Replies

8. Linux

Failed dependencies of rpm / how does RPM check for ?

Hey, I've a problem installing a package. rpm -ivh brings the errors: libjvm.so is needed by libverify.so is needed by But I have installed the Java SDK like requested and the files are on the disk. But I have no idea how to find out, why rpm cann't find them. I have also... (2 Replies)
Discussion started by: mod
2 Replies

9. UNIX for Dummies Questions & Answers

rpm and file system

Hi, There is an option to specify rpm while creating the file system ( default - 3600 ). Question is, If a file system which is built with default option is restored to a new disk with a higher rpm capacity, ( say 7200 rpm ), am I loosing any performance gains ? I mean, should I go for a... (1 Reply)
Discussion started by: shibz
1 Replies

10. Shell Programming and Scripting

how to use RPM to biuld *.rpm

I have an application for linux writen by me. and before use it, I have to install it. I 've writen a shell program to install it. Now how can I turn it to the *.rpm ? Is this can done by shell command rpm? How to do it? thanks (1 Reply)
Discussion started by: murataht
1 Replies
Login or Register to Ask a Question