[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [cobalt-users] Stupid CGI path question
- Subject: RE: [cobalt-users] Stupid CGI path question
- From: "Stew Smith" <stew@xxxxxxxxxx>
- Date: Tue Aug 15 19:12:34 2000
> *******************
> [admin@tesla admin]$ su
> Password:
> [root@tesla admin]# ln -s /usr/local/bin/perl /usr/bin/perl
> ln: /usr/bin/perl: File exists
> [root@tesla admin]#
> ********************
typing...
$ man ln
...will tell you that the syntax is 'ln TARGET SOURCE'
so the command you need is
$ ln -s /usr/bin/perl /usr/local/bin/perl
--Stew