- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Command for command list or index
Categories
Company
Local Language
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
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
Community
Resources
Forums
Blogs
- 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
10-05-2001 12:30 PM
10-05-2001 12:30 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 12:36 PM
10-05-2001 12:36 PM
Solution-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 12:44 PM
10-05-2001 12:44 PM
Re: Command for command list or index
Two things leap to my mind:
1) You can do keyword searches by doing:
# 'man -k keyword'
...if you have the 'whatis' database setup:
# catman -m
2) You can consult the online web man pages:
http://docs.hp.com/hpux/os/man_pages.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 12:46 PM
10-05-2001 12:46 PM
Re: Command for command list or index
Welcome to Unix. I don't have a great answer but this is about as close as it gets:
cd /usr/share/man
ls man1.Z man1m.Z | sort > /var/tmp/mylist
This will create a list sorted lost of the commands in the file /var/tmp/mylist.
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 12:50 PM
10-05-2001 12:50 PM
Re: Command for command list or index
There is no command that will list all the command on HP-UX. you have to see the list the hard way. use "ll" for the directories
/use/bin --> Normal command available to all users
/sbin --> System Commands
/usr/sbin --> Command normally used by root user
/usr/local/bin --> Command created by oracle install program ( may not be available on your system)
/etc --> Most of these commands are linked to /usr/sbin
Then, there are some command which are created by specific program, which sometimes are in /opt/$program/bin.
Hope this helps.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 01:21 PM
10-05-2001 01:21 PM
Re: Command for command list or index
As suggested by Clay you could sort, but there
will commands missing, like application
specific ones on your server. To find out where
the 'man' pages are use from your shell,
# echo $MANPATH
This will tell where all the 'man' pages are.
Good Luck
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 01:45 PM
10-05-2001 01:45 PM
Re: Command for command list or index
commands, if you use the tcsh shell
you can use command completion to help
you out.
Type "set autolist". Then, hitting ESC-ESC
or TAB will complete the current command;
e.g., if you type "a" then ESC-ESC or TAB, it'll
print a list of all commands that begin with "a".
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 04:22 AM
10-08-2001 04:22 AM