Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

setenv PATH /home/EDA/bin:$PATH is ....

Status
Not open for further replies.

yesme@

Member level 1
Joined
Jun 21, 2005
Messages
38
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,288
Activity points
1,570
I want to set path in Cygwin (Linux-like) environment such as we do in UNIX/LINUX as follows:
setenv PATH /home/EDA/bin:$PATH

In Cygwin, what do we do ?

tks,
 

yesme@ said:
I want to set path in Cygwin (Linux-like) environment such as we do in UNIX/LINUX as follows:
setenv PATH /home/EDA/bin:$PATH

In Cygwin, what do we do ?

tks,


Hi

If you see a '$' at your prompt you probably are in 'sh' or 'bash'
In this case use

...$PATH=$PATH:/home/EDA/bin
...$export PATH

or put these two lines in your local .bashrc file

If you see a '%' at your prompt you probably are in 'csh'
In this case use

...%setenv PATH= ${PATH}:/home/EDA/bin


or put these two lines in your local .cshrc file



tnx
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top