Operating System - HP-UX
1832617 Members
2792 Online
110043 Solutions
New Discussion

Re: how to add zip to my PATH ?

 
SOLVED
Go to solution
ng_7
Regular Advisor

how to add zip to my PATH ?

hi, friends

May I know how to add zip(or any command) to my PATH ?

thanks

regards
ng
5 REPLIES 5
Dennis Handly
Acclaimed Contributor

Re: how to add zip to my PATH ?

Do you know the path to those commands? If it is in /usr/local/bin you can do:
$ PATH=$PATH:/usr/local/bin
Ralph Grothe
Honored Contributor

Re: how to add zip to my PATH ?

Admittedly, on HP-UX gzip is in an unusual place.
So try this

PATH=$PATH:/usr/contrib/bin
Madness, thy name is system administration
V. Nyga
Honored Contributor
Solution

Re: how to add zip to my PATH ?

Hi,

to make it permanently, add your path to /etc/PATH.

Volkmar
*** Say 'Thanks' with Kudos ***
Anshumali
Esteemed Contributor

Re: how to add zip to my PATH ?

1. Find out the locaton.
2. Add the location to your path variable.
3. extend path variable to match the full path as required.
Dreams are not which you see while sleeping, Dreams are which doesnt allow you to sleep while you are chasing for them!!
ng_7
Regular Advisor

Re: how to add zip to my PATH ?

thank you very much.