chmod 命令在 GitBash 中的 Windows 上不起作用吗?
Does the chmod command not work on Windows in GitBash?
我正在模拟类 Unix 环境中的一些命令。我在 Windows 10 并使用 GitBash 的 shell 到 运行 命令,但 chmod 似乎没有保留文件的权限更改。
zecuse MINGW64 ~ (dev)
$ touch test
zecuse MINGW64 ~ (dev)
$ ls -l test
-rw-r--r-- 1 zecuse 1049089 0 Nov 13 13:30 test
zecuse MINGW64 ~ (dev)
$ chmod -c -r test
mode of 'test' changed from 0644 (rw-r--r--) to 0200 (-w-------)
zecuse MINGW64 ~ (dev)
$ ls -l test
-rw-r--r-- 1 zecuse 1049089 0 Nov 13 13:30 test
Windows 是否阻止我以这种方式更改文件权限?如果是这样,我是否需要使用 powershell 来修改文件的权限?
与 chmod 等效的是 icacls
请参考-
https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/icacls
How to grant permission to users for a directory using command line in Windows?
如果是 chmod 0200 - 用户写入权限
尝试使用 cmd 提示符或 powershell
icacls test1 /grant User1:(w)
不,windows 文件系统似乎与 gitbash chmod 不兼容:https://www.reddit.com/r/git/comments/dss843/chmod_not_working_with_git_bash_in_windows/
我认为这与 powershell 无关。
我正在模拟类 Unix 环境中的一些命令。我在 Windows 10 并使用 GitBash 的 shell 到 运行 命令,但 chmod 似乎没有保留文件的权限更改。
zecuse MINGW64 ~ (dev)
$ touch test
zecuse MINGW64 ~ (dev)
$ ls -l test
-rw-r--r-- 1 zecuse 1049089 0 Nov 13 13:30 test
zecuse MINGW64 ~ (dev)
$ chmod -c -r test
mode of 'test' changed from 0644 (rw-r--r--) to 0200 (-w-------)
zecuse MINGW64 ~ (dev)
$ ls -l test
-rw-r--r-- 1 zecuse 1049089 0 Nov 13 13:30 test
Windows 是否阻止我以这种方式更改文件权限?如果是这样,我是否需要使用 powershell 来修改文件的权限?
与 chmod 等效的是 icacls
请参考-
https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/icacls
How to grant permission to users for a directory using command line in Windows?
如果是 chmod 0200 - 用户写入权限
尝试使用 cmd 提示符或 powershell
icacls test1 /grant User1:(w)
不,windows 文件系统似乎与 gitbash chmod 不兼容:https://www.reddit.com/r/git/comments/dss843/chmod_not_working_with_git_bash_in_windows/
我认为这与 powershell 无关。