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 openJD
