Lets say I have an rpm package called ibm.rpm. I want to extract just one file (libjitc.so) from the package. I ran the...
rpm -qpl ibm.rpm | grep libjitc.so
...command to see if the file I need is there. It is and it gives me the path to which it will be installed, which was /opt/IBMJava2-13/jre/bin/libjitc.so. How do I just extract this one file to the directory that I choose without installing the entire package?
Thanks in advance,
ChrisP
rpm -qpl ibm.rpm | grep libjitc.so
...command to see if the file I need is there. It is and it gives me the path to which it will be installed, which was /opt/IBMJava2-13/jre/bin/libjitc.so. How do I just extract this one file to the directory that I choose without installing the entire package?
Thanks in advance,
ChrisP