Created
September 24, 2024 17:13
-
-
Save vantm/a8c17b290dc18be0e83f32aa3fe6e392 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| setlocal enableextensions disabledelayedexpansion | |
| (for %%a in (%*) do if exist "%%~a" ( | |
| pushd "%%~dpa" && ( copy /b "%%~nxa"+,, & popd ) | |
| ) else ( | |
| type nul > "%%~fa" | |
| )) >nul 2>&1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment