Files can be locked on OS X by going to the "Get Info" panel for the specific file and clicking the lock button.

I would need to remove locks from a shell script. What unix command can do that?

link|improve this question

25% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Unlock "Locked" flag on a folder recursivly

chflags -R nouchg /folder/path

link|improve this answer
feedback

Try chflags nouchg YOUR_FILE. To re-enable the lock, chflags uchg YOUR_FILE.

link|improve this answer
feedback

If you've got xcode installed, /Developer/Tools/SetFile. To unlock:

% SetFile -a l <path>

To lock:

% SetFile -a L <path>

To query, you can use /Developer/Tools/GetFileInfo

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.