VGZ Registered Mar 30, 2001 #1 In the PB you could put .command on the end of a command line file like a shell script and you would then be able to double-click it to run it in a terminal window. This no longer works. Has anyone found a way of doing this in the final?
In the PB you could put .command on the end of a command line file like a shell script and you would then be able to double-click it to run it in a terminal window. This no longer works. Has anyone found a way of doing this in the final?
scruffy Notorious Olive Counter Mar 31, 2001 #2 I'm not exactly sure why this is, but you have to make the the .command file world executable. That is: chmod a+x foo.command
I'm not exactly sure why this is, but you have to make the the .command file world executable. That is: chmod a+x foo.command
scruffy Notorious Olive Counter Mar 31, 2001 #3 My mistake. It just needs to be executable by its owner: chmod o+x foo.command