[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] Stupid CGI path question



> Which is the correct (Telnet) command:
> 
> 1.    ln -s    /usr/local/bin/perl      /usr/bin/perl       (spaces
> exaggerated for clarity)
> 
> ... or ...
> 
> 2.   ln -s     /usr/bin/perl      /usr/local/bin/perl
> 
> ... or am I missing something else, here, that I need to
> solve this problem?  TIA

It is 
ln -s source target

so if you want to create a sybolic link /usr/bin/perl that points to
/usr/local/bin/perl the command would be

ln -s /usr/local/bin/perl /usr/bin/perl

-k