HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: identify applications that use RogueWave
Operating System - HP-UX
1833772
Members
2388
Online
110063
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2007 08:08 AM
01-17-2007 08:08 AM
Hi all:
Working with the DST crap still.
How can one identify which applicatons use the RogueWave libraries.
The specific library being discussed is the librwtool.
Thanks
Working with the DST crap still.
How can one identify which applicatons use the RogueWave libraries.
The specific library being discussed is the librwtool.
Thanks
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2007 08:25 AM
01-17-2007 08:25 AM
Solution
I would do something close to this leveraging ldd.
find . -type f \
\( -perm -100 -o -perm -010 -o -perm -001 \) | while read F
do
file "${F}" | grep -q -i "executable"
STAT=${?}
if [[ ${STAT} -eq 0 ]] # executable
then
ldd "${F}" | grep -q "libwrtool"
STAT=${?}
if [[ ${STAT} -eq 0 ]]
then
echo "${F}"
fi
fi
done
find . -type f \
\( -perm -100 -o -perm -010 -o -perm -001 \) | while read F
do
file "${F}" | grep -q -i "executable"
STAT=${?}
if [[ ${STAT} -eq 0 ]] # executable
then
ldd "${F}" | grep -q "libwrtool"
STAT=${?}
if [[ ${STAT} -eq 0 ]]
then
echo "${F}"
fi
fi
done
If it ain't broke, I can fix that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2007 03:15 PM
01-17-2007 03:15 PM
Re: identify applications that use RogueWave
Have you see this thread?
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1089014
It points to TKB document ID # c00832124.
The following is a thread with verification sample programs and how to use nm(1) to search.
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1090322
>Clay: I would do something close to this leveraging ldd.
If you can find the shared librwtool, the solution is simple, apply the patch without searching. Unless you just need to know if you use it at all.
The hard part is if you used the archive form to link.
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1089014
It points to TKB document ID # c00832124.
The following is a thread with verification sample programs and how to use nm(1) to search.
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1090322
>Clay: I would do something close to this leveraging ldd.
If you can find the shared librwtool, the solution is simple, apply the patch without searching. Unless you just need to know if you use it at all.
The hard part is if you used the archive form to link.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2007 06:35 AM
01-19-2007 06:35 AM
Re: identify applications that use RogueWave
Thanks much!
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP