📜  批量复制和替换代码 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:09.901000             🧑  作者: Mango

代码示例4
@echo off
setlocal
rem get the .lnk target directory
for /f "tokens=* usebackq" %%i in (`type "C:\Users\Abdo\Desktop\Gravity.lnk ^| find "\" ^| findstr/b "[a-z][:][\\]"`) do (set _targetdir=%%~dpi)
rem copy the files
copy /y Gravity.pdf %_target%
endlocal