从 OS X shell 脚本释放文件锁

从 OS X shell 脚本释放文件锁

通过转到特定文件的“获取信息”面板并单击锁定按钮,可以在 OS X 上锁定文件。

我需要从 shell 脚本中删除锁。哪个 unix 命令可以做到这一点?

答案1

递归解锁文件夹上的“锁定”标志

chflags -R nouchg /文件夹/路径

答案2

尝试chflags nouchg YOUR_FILE。要重新启用锁,chflags uchg YOUR_FILE

答案3

如果你已经安装了 xcode,/Developer/Tools/SetFile要解锁:

% SetFile -a l <path>

锁定:

% SetFile -a L <path>

要查询,您可以使用/Developer/Tools/GetFileInfo

相关内容