0

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?

lajos
  • 1,345
  • 4
  • 14
  • 8

3 Answers3

2

Unlock "Locked" flag on a folder recursivly

chflags -R nouchg /folder/path

joeschram
  • 46
  • 2
2

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

joshk0
  • 465
  • 2
  • 5
2

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