Any GUI tools that can set execute bit?

2005-03-03 Thread Tommy Nordgren
Are there any Graphical User Interface Tools that can set the 
executable bits in the file info on disk?
Home is not where you are born, but where your heart finds peace -
Tommy Nordgren, The dying old crone



Re: Any GUI tools that can set execute bit?

2005-03-03 Thread Phil Dobbin
On 03/03/2005 @ 19:23 GMT, Tommy Nordgren, [EMAIL PROTECTED], wrote:

Are there any Graphical User Interface Tools that can set the 
executable bits in the file info on disk?

Try XRay:

http://www.brockerhoff.net/xray/

Cheers,

Regards,

Phil.


Re: Any GUI tools that can set execute bit?

2005-03-03 Thread Bruce Van Allen
On 2005-03-03 Tommy Nordgren wrote:

Are there any Graphical User Interface Tools that can set the 
executable bits in the file info on disk?
Home is not where you are born, but where your heart finds peace -
Tommy Nordgren, The dying old crone



I suggest SuperGetInfo from Barebones Software (www.barebones.com).

But I will NOT debate, advocate, challenge, argue, disparage, promote,
one-up, put down, ...

1;

- Bruce

__bruce__van_allen__santa_cruz__ca__


Re: Any GUI tools that can set execute bit?

2005-03-03 Thread John Delacour
At 8:23 pm +0100 3/3/05, Tommy Nordgren wrote:
Are there any Graphical User Interface Tools that can set the 
executable bits in the file info on disk?

You can make your own droplet to do this.  Save the following script 
in Script Editor as an application (stay-open if you like) naming it 
755.app and you can simply drop files onto its icon in the dock or 
wherever to change the permissions:

on open _filelist
  set _pathlist to chmod 755 
  repeat with _alias in _filelist as list
set _path to quoted form of POSIX path of _alias
set _pathlist to _pathlist  _path  space
  end repeat
  do shell script _pathlist
end open
JD