Skip to content

Instantly share code, notes, and snippets.

@Leandros
Created February 16, 2018 10:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Leandros/48a30b30f4e38b603758263d4ab6d6c4 to your computer and use it in GitHub Desktop.
Save Leandros/48a30b30f4e38b603758263d4ab6d6c4 to your computer and use it in GitHub Desktop.
*nix like touch on Windows
@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