Skip to content

Instantly share code, notes, and snippets.

@tonytangau
Last active July 5, 2020 07:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonytangau/94b989f72f93b1c5950eda7d7feccd01 to your computer and use it in GitHub Desktop.
Save tonytangau/94b989f72f93b1c5950eda7d7feccd01 to your computer and use it in GitHub Desktop.
# Add "touch" to powershell
# > code $profile
function touch {
Param(
[Parameter(Mandatory=$true)]
[string]$Path
)
if (Test-Path -LiteralPath $Path) {
(Get-Item -Path $Path).LastWriteTime = Get-Date
} else {
New-Item -Type File -Path $Path
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment