If you're in Leopard, open Terminal, enter 'open .profile' and your
bash profile will open up. In there you need to add:
1) The path to your executable to the $PATH environment variable:
export PATH=$PATH:/Applications/Nuke5.0v2/Nuke5.0v2.app
2) An alias for the executable, which must be in the directory on the
end of that path:
alias nuke="Nuke5.0"
You could also just do alias nuke ="the entire bloody string to the
executable", but adding it to the PATH has other benefits.
-deke
So right now, I have a file called .cshrc which has the following
lines in it:
export PATH=$PATH:/Applications/Nuke5.0v2/Nuke5.0v2.appalias nuke="Nuke5.0"
When I type "csh" I get this message:
csh: Bad : modifier in $ (/).
and my prompt changes to [(ip address):~] davidaug%
from there I type "nuke" and get
csh: nuke: Command not found.
Where should I go from here?
--David
On Jun 18, 2:58 pm, "Randy Little" <randyslit...@gmail.com> wrote:
> No it has bash csh tsch and zsh. I have used all of them just today because
> I sent the email.
>
>
>
> On Wed, Jun 18, 2008 at 2:44 PM, Deke Kincaid <dekekinc...@gmail.com> wrote:
>
> > I believe osx only has tcsh not csh, so you will need to add it to a
> > .tcshrc file instead.
>
> > -deke
>
> > imdb.com/name/nm2325729/http://www.linkedin.com/in/rslittlehttp://www.creativeheads.net/jspro...
>
> --
> Randy S. Littlehttp://reel.rslittle.comhttp://imdb.com/name/nm2325729/http://www.linkedin.com/in/rslittlehttp://www.creativeheads.net/jsprofile.aspx?j=d5406b5d61&spi=0
setting the path in csh looks like this:
set path = ($path /Applications/Nuke5.0v2/Nuke5.0v2.app )
btw you can set your default shell in the system preferences > accounts
-deke
-deke