SimonSellick
Programmer
Hi,
Has anyone made this work? I'm struggling to get the external program to run. If I specify the entire pathname it manages to find the command, but if it tries to do anything useful it falls over with insufficient unix permissions to write anything anywhere (apparently). The only command that I have succeeded in making run is
- which loses its stdout somewhere. If I try to catch stdout in a file
it complains 'No such file or directory'. What I am trying to achieve is to run a ksh script which will create various files.
Any suggestions welcomed.
Has anyone made this work? I'm struggling to get the external program to run. If I specify the entire pathname it manages to find the command, but if it tries to do anything useful it falls over with insufficient unix permissions to write anything anywhere (apparently). The only command that I have succeeded in making run is
Code:
/usr/bin/ls
Code:
/usr/bin/ls >/tmp/x
Any suggestions welcomed.