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

RE: [cobalt-developers] Allowin a .exe file to run for a specified site?



On Wed, 27 Jun 2001, Ervin Tarkhanian wrote:

> Thank you all for the info.
> 
> These are compiled python executables, sorry I didn't make that clear in the
> beginning.  I can't open the files and modify them, and source code is not
> provided.
> 
> 
> Ervin

I see, and you won't be reverse engineering them, right? :)

hehe

ok I have an IDEA who'll MIGHT work (it should, as far as I know linux)

You know what are symlinks?
Those are like pointers to files, and if you refer to the symlink, it's as
if you referred to the file (or directory) itself.

So my idea is:

if step1.exe will point to step1.cgi
and step2.exe will point to step2.cgi
that thing should work...

the command to make a symlink is:

ln -s <target> <linked name>

HTH,


- shimi.