lajos Asked: 2009-05-28 14:32:51 +0800 CST2009-05-28 14:32:51 +0800 CST 2009-05-28 14:32:51 +0800 CST 从 OS X shell 脚本释放文件锁 772 通过转到特定文件的“获取信息”面板并单击锁定按钮,可以在 OS X 上锁定文件。 我需要从 shell 脚本中删除锁。什么unix命令可以做到这一点? mac-osx files 3 个回答 Voted Best Answer joeschram 2009-05-28T14:55:48+08:002009-05-28T14:55:48+08:00 递归解锁文件夹上的“锁定”标志 chflags -R nouchg /文件夹/路径 joshk0 2009-05-28T14:58:21+08:002009-05-28T14:58:21+08:00 试试chflags nouchg YOUR_FILE。要重新启用锁,chflags uchg YOUR_FILE. Jay Soffian 2009-05-28T14:58:44+08:002009-05-28T14:58:44+08:00 如果你已经安装了 xcode /Developer/Tools/SetFile,. 开锁: % SetFile -a l <path> 锁定: % SetFile -a L <path> 要查询,您可以使用/Developer/Tools/GetFileInfo
递归解锁文件夹上的“锁定”标志
chflags -R nouchg /文件夹/路径
试试
chflags nouchg YOUR_FILE
。要重新启用锁,chflags uchg YOUR_FILE
.如果你已经安装了 xcode
/Developer/Tools/SetFile
,. 开锁:锁定:
要查询,您可以使用
/Developer/Tools/GetFileInfo