Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

shecky

Guest
Original poster
May 24, 2003
2,580
5
Obviously you're not a golfer.
i know zero about applescript and automator.

my partner and i swap folders of files back and forth regularly. when she drops a folder into my drop box, i need to do a 'get info' on the folder, hit the plus sign and the bottom, enter my password, add myself to the list of names, make my permissions read+write, and then apply to all enclosed items. i end up doing this 20 times a day.

is there a script or action i can have to do it in one click?

thanks!!
 
Code:
#!/bin/sh

/bin/chmod -R u+wr "/Users/shecky/Public/Drop Box/"
/bin/echo Done.

Assuming "shecky" is your username, change accordingly.

Save it as whateverfilename.command and then you can double click it in the Finder to run the shell script.

EDIT: But you have to make it an executable first..

chmod u+x /Users/shecky/whereever/the/file/is/whateverfilename.command
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.