如何在 Windows 中跟踪 Linux(minshall 法语)符号链接

如何在 Windows 中跟踪 Linux(minshall 法语)符号链接

我有一个CIFS驱动器安装在linuxWindows上,分别如下,

  • sudo mount -t cifs -o mfsymlinks,cred=/home/user/.cifs_user //server/folder /mnt/test
  • net use M: \\server\folder /p:yes

我可以在 Linux 中创建并跟踪符号链接:

pushd /mnt/test
echo "test data" > test.dat
ln -s test.dat link-to-test.dat
cat link-to-test.dat

回报test data与预期一致。完美!

现在,如果Windows我在机器上打开一个gitbash终端并写入

cat link-to-test.dat

然后我得到Minshall+Finch文件

XSym
0008
729c5ad9d7fa8a171d3347aafa875f33
test.dat

同样,如果我从 运行相同的命令Powershell

那么问题是:我要做什么Windows才能跟随链接的方式是否相同linux

相关内容