last modified by zhoutianju , 2023-06-02 00:54:42
创建软链
文件软链
set LINK_NAME="C:\Users\zhoutianju\.bash_profile_windows"
set TARGET="C:\Users\zhoutianju\Dropbox\home\.bash_profile_windows"
type %LINK_NAME%
type %TARGET%
del /q %LINK_NAME%
mklink /d %LINK_NAME% %TARGET%
目录软链
set LINK_NAME="C:\Users\zhoutianju\bin"
set TARGET="C:\Users\zhoutianju\Dropbox\bin"
dir %LINK_NAME%
dir %TARGET%
rmdir /s /q %LINK_NAME%
mklink /d %LINK_NAME% %TARGET%
Copyright © 2023 zhoutianju.
All rights reserved.
All rights reserved.