diff --git a/utils.ps1 b/utils.ps1 index e840538..da85e2c 100644 --- a/utils.ps1 +++ b/utils.ps1 @@ -34,3 +34,11 @@ function rm { Invoke-Expression -Command "$Command $Path" } } + +# Add new aliases +function touch { + Param ( + [string]$Path + ) + New-Item -Type File $Path +}